Compress large textures to VRAM formats and enable 2D mipmaps

All 747 imported PNGs were imported losslessly (compress/mode=0) without
mipmaps. Lossless textures are decompressed to raw RGBA8 in GPU memory,
so the big gameplay assets were extremely expensive: the 4100x2448
bush_curtain alone used ~40 MB of VRAM, and the 6400x8001 minigame
spritesheets ~205 MB each. Summed over the affected files, the
worst-case footprint was ~2.4 GB of texture memory for a game that
targets low-end 1-2 GB tablets with the gl_compatibility renderer. The
absence of mipmaps also caused shimmering and wasted bandwidth whenever
these textures were drawn below their native size, which is almost
always the case with the 2560x1800 canvas_items stretch.

- Switch the 119 textures with a dimension >= 512 px to VRAM
  compression (compress/mode=2) with generated mipmaps. The project
  already enables etc2_astc import, so mobile gets ETC2/ASTC and
  desktop gets S3TC/BPTC. The total footprint for these textures drops
  from ~2.4 GB raw RGBA8 to ~770 MB including mipmaps (~3x smaller
  resident set, plus faster texture uploads).
- Keep small UI textures (< 512 px, 626 files) lossless: their VRAM
  cost is negligible and block-compression artifacts would be most
  visible on small crisp UI art.
- Set the default 2D texture filter to Linear Mipmap so the generated
  mipmaps are actually sampled by canvas items (without this, mipmap
  generation would only add memory).
- Remove viewport/hdr_2d=true: HDR 2D allocates RGBA16F framebuffers,
  doubling framebuffer memory and bandwidth at 2560x1800 on exactly the
  GPUs that can least afford it. No scene uses glow or HDR values (no
  WorldEnvironment anywhere), so this was pure cost. As false is the
  default value, Godot drops the line entirely.

Texture quality should be eyeballed in the editor on the largest
illustrations; any texture where compression artifacts are noticeable
can be switched back to lossless individually.

Verified with the GUT test suite (62/62 passing).
This commit is contained in:
Adrien Ufferte
2026-06-11 08:44:33 +02:00
parent 3b597d92d5
commit 896e2740b3
120 changed files with 834 additions and 596 deletions
+7 -5
View File
@@ -3,19 +3,21 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://cop8iscyxohrb"
path="res://.godot/imported/bush_curtain.png-2e1fb82bc0153666dd15620ed6cf9a14.ctex"
path.s3tc="res://.godot/imported/bush_curtain.png-2e1fb82bc0153666dd15620ed6cf9a14.s3tc.ctex"
path.etc2="res://.godot/imported/bush_curtain.png-2e1fb82bc0153666dd15620ed6cf9a14.etc2.ctex"
metadata={
"vram_texture": false
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
[deps]
source_file="res://assets/bush_curtain.png"
dest_files=["res://.godot/imported/bush_curtain.png-2e1fb82bc0153666dd15620ed6cf9a14.ctex"]
dest_files=["res://.godot/imported/bush_curtain.png-2e1fb82bc0153666dd15620ed6cf9a14.s3tc.ctex", "res://.godot/imported/bush_curtain.png-2e1fb82bc0153666dd15620ed6cf9a14.etc2.ctex"]
[params]
compress/mode=0
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
@@ -23,7 +25,7 @@ compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
+7 -5
View File
@@ -3,19 +3,21 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://d26hapg1hf8a6"
path="res://.godot/imported/garden_01.png-8cec30484a43f71cd614fe156e78443f.ctex"
path.s3tc="res://.godot/imported/garden_01.png-8cec30484a43f71cd614fe156e78443f.s3tc.ctex"
path.etc2="res://.godot/imported/garden_01.png-8cec30484a43f71cd614fe156e78443f.etc2.ctex"
metadata={
"vram_texture": false
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
[deps]
source_file="res://assets/gardens/gardens/garden_01.png"
dest_files=["res://.godot/imported/garden_01.png-8cec30484a43f71cd614fe156e78443f.ctex"]
dest_files=["res://.godot/imported/garden_01.png-8cec30484a43f71cd614fe156e78443f.s3tc.ctex", "res://.godot/imported/garden_01.png-8cec30484a43f71cd614fe156e78443f.etc2.ctex"]
[params]
compress/mode=0
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
@@ -23,7 +25,7 @@ compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
+7 -5
View File
@@ -3,19 +3,21 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://4wt50lu3cwbl"
path="res://.godot/imported/garden_02.png-952b73c44e8f297d7146afccf72fa6f8.ctex"
path.s3tc="res://.godot/imported/garden_02.png-952b73c44e8f297d7146afccf72fa6f8.s3tc.ctex"
path.etc2="res://.godot/imported/garden_02.png-952b73c44e8f297d7146afccf72fa6f8.etc2.ctex"
metadata={
"vram_texture": false
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
[deps]
source_file="res://assets/gardens/gardens/garden_02.png"
dest_files=["res://.godot/imported/garden_02.png-952b73c44e8f297d7146afccf72fa6f8.ctex"]
dest_files=["res://.godot/imported/garden_02.png-952b73c44e8f297d7146afccf72fa6f8.s3tc.ctex", "res://.godot/imported/garden_02.png-952b73c44e8f297d7146afccf72fa6f8.etc2.ctex"]
[params]
compress/mode=0
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
@@ -23,7 +25,7 @@ compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
+7 -5
View File
@@ -3,19 +3,21 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://ch1ah3nkjy5cl"
path="res://.godot/imported/garden_03.png-5f6b1132537a67d14c76986a1aaf0c9e.ctex"
path.s3tc="res://.godot/imported/garden_03.png-5f6b1132537a67d14c76986a1aaf0c9e.s3tc.ctex"
path.etc2="res://.godot/imported/garden_03.png-5f6b1132537a67d14c76986a1aaf0c9e.etc2.ctex"
metadata={
"vram_texture": false
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
[deps]
source_file="res://assets/gardens/gardens/garden_03.png"
dest_files=["res://.godot/imported/garden_03.png-5f6b1132537a67d14c76986a1aaf0c9e.ctex"]
dest_files=["res://.godot/imported/garden_03.png-5f6b1132537a67d14c76986a1aaf0c9e.s3tc.ctex", "res://.godot/imported/garden_03.png-5f6b1132537a67d14c76986a1aaf0c9e.etc2.ctex"]
[params]
compress/mode=0
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
@@ -23,7 +25,7 @@ compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
+7 -5
View File
@@ -3,19 +3,21 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://l32ekwfso26s"
path="res://.godot/imported/garden_04.png-4af29a3ee810ade399f7fba358601b39.ctex"
path.s3tc="res://.godot/imported/garden_04.png-4af29a3ee810ade399f7fba358601b39.s3tc.ctex"
path.etc2="res://.godot/imported/garden_04.png-4af29a3ee810ade399f7fba358601b39.etc2.ctex"
metadata={
"vram_texture": false
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
[deps]
source_file="res://assets/gardens/gardens/garden_04.png"
dest_files=["res://.godot/imported/garden_04.png-4af29a3ee810ade399f7fba358601b39.ctex"]
dest_files=["res://.godot/imported/garden_04.png-4af29a3ee810ade399f7fba358601b39.s3tc.ctex", "res://.godot/imported/garden_04.png-4af29a3ee810ade399f7fba358601b39.etc2.ctex"]
[params]
compress/mode=0
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
@@ -23,7 +25,7 @@ compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
+7 -5
View File
@@ -3,19 +3,21 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://d3bu30iutptwx"
path="res://.godot/imported/garden_05.png-b2eede99e5cfc7d755b398e252db8066.ctex"
path.s3tc="res://.godot/imported/garden_05.png-b2eede99e5cfc7d755b398e252db8066.s3tc.ctex"
path.etc2="res://.godot/imported/garden_05.png-b2eede99e5cfc7d755b398e252db8066.etc2.ctex"
metadata={
"vram_texture": false
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
[deps]
source_file="res://assets/gardens/gardens/garden_05.png"
dest_files=["res://.godot/imported/garden_05.png-b2eede99e5cfc7d755b398e252db8066.ctex"]
dest_files=["res://.godot/imported/garden_05.png-b2eede99e5cfc7d755b398e252db8066.s3tc.ctex", "res://.godot/imported/garden_05.png-b2eede99e5cfc7d755b398e252db8066.etc2.ctex"]
[params]
compress/mode=0
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
@@ -23,7 +25,7 @@ compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
+7 -5
View File
@@ -3,19 +3,21 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://bhamsdjj677b3"
path="res://.godot/imported/garden_06.png-943860b612f9520e74a0732cde3cbfe6.ctex"
path.s3tc="res://.godot/imported/garden_06.png-943860b612f9520e74a0732cde3cbfe6.s3tc.ctex"
path.etc2="res://.godot/imported/garden_06.png-943860b612f9520e74a0732cde3cbfe6.etc2.ctex"
metadata={
"vram_texture": false
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
[deps]
source_file="res://assets/gardens/gardens/garden_06.png"
dest_files=["res://.godot/imported/garden_06.png-943860b612f9520e74a0732cde3cbfe6.ctex"]
dest_files=["res://.godot/imported/garden_06.png-943860b612f9520e74a0732cde3cbfe6.s3tc.ctex", "res://.godot/imported/garden_06.png-943860b612f9520e74a0732cde3cbfe6.etc2.ctex"]
[params]
compress/mode=0
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
@@ -23,7 +25,7 @@ compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
+7 -5
View File
@@ -3,19 +3,21 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://clcff3fg5jd2k"
path="res://.godot/imported/garden_07.png-552b63ddceeb7d6136f933619623d519.ctex"
path.s3tc="res://.godot/imported/garden_07.png-552b63ddceeb7d6136f933619623d519.s3tc.ctex"
path.etc2="res://.godot/imported/garden_07.png-552b63ddceeb7d6136f933619623d519.etc2.ctex"
metadata={
"vram_texture": false
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
[deps]
source_file="res://assets/gardens/gardens/garden_07.png"
dest_files=["res://.godot/imported/garden_07.png-552b63ddceeb7d6136f933619623d519.ctex"]
dest_files=["res://.godot/imported/garden_07.png-552b63ddceeb7d6136f933619623d519.s3tc.ctex", "res://.godot/imported/garden_07.png-552b63ddceeb7d6136f933619623d519.etc2.ctex"]
[params]
compress/mode=0
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
@@ -23,7 +25,7 @@ compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
+7 -5
View File
@@ -3,19 +3,21 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://kgeoctiggnxx"
path="res://.godot/imported/garden_08.png-60a000c144495dd62452995bc8932932.ctex"
path.s3tc="res://.godot/imported/garden_08.png-60a000c144495dd62452995bc8932932.s3tc.ctex"
path.etc2="res://.godot/imported/garden_08.png-60a000c144495dd62452995bc8932932.etc2.ctex"
metadata={
"vram_texture": false
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
[deps]
source_file="res://assets/gardens/gardens/garden_08.png"
dest_files=["res://.godot/imported/garden_08.png-60a000c144495dd62452995bc8932932.ctex"]
dest_files=["res://.godot/imported/garden_08.png-60a000c144495dd62452995bc8932932.s3tc.ctex", "res://.godot/imported/garden_08.png-60a000c144495dd62452995bc8932932.etc2.ctex"]
[params]
compress/mode=0
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
@@ -23,7 +25,7 @@ compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
+7 -5
View File
@@ -3,19 +3,21 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://dqk14m4demy3a"
path="res://.godot/imported/garden_09.png-4a49e6b67d1574a86d201faadd295c12.ctex"
path.s3tc="res://.godot/imported/garden_09.png-4a49e6b67d1574a86d201faadd295c12.s3tc.ctex"
path.etc2="res://.godot/imported/garden_09.png-4a49e6b67d1574a86d201faadd295c12.etc2.ctex"
metadata={
"vram_texture": false
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
[deps]
source_file="res://assets/gardens/gardens/garden_09.png"
dest_files=["res://.godot/imported/garden_09.png-4a49e6b67d1574a86d201faadd295c12.ctex"]
dest_files=["res://.godot/imported/garden_09.png-4a49e6b67d1574a86d201faadd295c12.s3tc.ctex", "res://.godot/imported/garden_09.png-4a49e6b67d1574a86d201faadd295c12.etc2.ctex"]
[params]
compress/mode=0
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
@@ -23,7 +25,7 @@ compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
+7 -5
View File
@@ -3,19 +3,21 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://cahtl4j3wxahn"
path="res://.godot/imported/garden_10.png-39a7d010b681ef7c20becd3e54ebced2.ctex"
path.s3tc="res://.godot/imported/garden_10.png-39a7d010b681ef7c20becd3e54ebced2.s3tc.ctex"
path.etc2="res://.godot/imported/garden_10.png-39a7d010b681ef7c20becd3e54ebced2.etc2.ctex"
metadata={
"vram_texture": false
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
[deps]
source_file="res://assets/gardens/gardens/garden_10.png"
dest_files=["res://.godot/imported/garden_10.png-39a7d010b681ef7c20becd3e54ebced2.ctex"]
dest_files=["res://.godot/imported/garden_10.png-39a7d010b681ef7c20becd3e54ebced2.s3tc.ctex", "res://.godot/imported/garden_10.png-39a7d010b681ef7c20becd3e54ebced2.etc2.ctex"]
[params]
compress/mode=0
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
@@ -23,7 +25,7 @@ compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
+7 -5
View File
@@ -3,19 +3,21 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://dpl670l7onk5n"
path="res://.godot/imported/garden_11.png-cfde776b2d9c071e225bed94f36560e1.ctex"
path.s3tc="res://.godot/imported/garden_11.png-cfde776b2d9c071e225bed94f36560e1.s3tc.ctex"
path.etc2="res://.godot/imported/garden_11.png-cfde776b2d9c071e225bed94f36560e1.etc2.ctex"
metadata={
"vram_texture": false
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
[deps]
source_file="res://assets/gardens/gardens/garden_11.png"
dest_files=["res://.godot/imported/garden_11.png-cfde776b2d9c071e225bed94f36560e1.ctex"]
dest_files=["res://.godot/imported/garden_11.png-cfde776b2d9c071e225bed94f36560e1.s3tc.ctex", "res://.godot/imported/garden_11.png-cfde776b2d9c071e225bed94f36560e1.etc2.ctex"]
[params]
compress/mode=0
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
@@ -23,7 +25,7 @@ compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
+7 -5
View File
@@ -3,19 +3,21 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://b6pmtjjp4rejb"
path="res://.godot/imported/garden_12.png-13d7be39631648987956568e37e0e56f.ctex"
path.s3tc="res://.godot/imported/garden_12.png-13d7be39631648987956568e37e0e56f.s3tc.ctex"
path.etc2="res://.godot/imported/garden_12.png-13d7be39631648987956568e37e0e56f.etc2.ctex"
metadata={
"vram_texture": false
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
[deps]
source_file="res://assets/gardens/gardens/garden_12.png"
dest_files=["res://.godot/imported/garden_12.png-13d7be39631648987956568e37e0e56f.ctex"]
dest_files=["res://.godot/imported/garden_12.png-13d7be39631648987956568e37e0e56f.s3tc.ctex", "res://.godot/imported/garden_12.png-13d7be39631648987956568e37e0e56f.etc2.ctex"]
[params]
compress/mode=0
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
@@ -23,7 +25,7 @@ compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
+7 -5
View File
@@ -3,19 +3,21 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://clwx5ksla5icp"
path="res://.godot/imported/grid_mask.png-7fa416ead6aed7fdc7f00b4b1f1af50b.ctex"
path.s3tc="res://.godot/imported/grid_mask.png-7fa416ead6aed7fdc7f00b4b1f1af50b.s3tc.ctex"
path.etc2="res://.godot/imported/grid_mask.png-7fa416ead6aed7fdc7f00b4b1f1af50b.etc2.ctex"
metadata={
"vram_texture": false
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
[deps]
source_file="res://assets/gardens/gardens/grid_mask.png"
dest_files=["res://.godot/imported/grid_mask.png-7fa416ead6aed7fdc7f00b4b1f1af50b.ctex"]
dest_files=["res://.godot/imported/grid_mask.png-7fa416ead6aed7fdc7f00b4b1f1af50b.s3tc.ctex", "res://.godot/imported/grid_mask.png-7fa416ead6aed7fdc7f00b4b1f1af50b.etc2.ctex"]
[params]
compress/mode=0
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
@@ -23,7 +25,7 @@ compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
@@ -3,19 +3,21 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://dcuobvoav863b"
path="res://.godot/imported/pink_jellyfish.png-99508b215ac7a943286e22be8a93bcd0.ctex"
path.s3tc="res://.godot/imported/pink_jellyfish.png-99508b215ac7a943286e22be8a93bcd0.s3tc.ctex"
path.etc2="res://.godot/imported/pink_jellyfish.png-99508b215ac7a943286e22be8a93bcd0.etc2.ctex"
metadata={
"vram_texture": false
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
[deps]
source_file="res://assets/gardens/victory_assets/animals/pink_jellyfish.png"
dest_files=["res://.godot/imported/pink_jellyfish.png-99508b215ac7a943286e22be8a93bcd0.ctex"]
dest_files=["res://.godot/imported/pink_jellyfish.png-99508b215ac7a943286e22be8a93bcd0.s3tc.ctex", "res://.godot/imported/pink_jellyfish.png-99508b215ac7a943286e22be8a93bcd0.etc2.ctex"]
[params]
compress/mode=0
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
@@ -23,7 +25,7 @@ compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
@@ -3,19 +3,21 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://dcekseb1b3ruw"
path="res://.godot/imported/victory_asset_plant_01.png-931e26d06bf2aa7ff030305e632dead0.ctex"
path.s3tc="res://.godot/imported/victory_asset_plant_01.png-931e26d06bf2aa7ff030305e632dead0.s3tc.ctex"
path.etc2="res://.godot/imported/victory_asset_plant_01.png-931e26d06bf2aa7ff030305e632dead0.etc2.ctex"
metadata={
"vram_texture": false
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
[deps]
source_file="res://assets/gardens/victory_assets/victory_asset_plant_01.png"
dest_files=["res://.godot/imported/victory_asset_plant_01.png-931e26d06bf2aa7ff030305e632dead0.ctex"]
dest_files=["res://.godot/imported/victory_asset_plant_01.png-931e26d06bf2aa7ff030305e632dead0.s3tc.ctex", "res://.godot/imported/victory_asset_plant_01.png-931e26d06bf2aa7ff030305e632dead0.etc2.ctex"]
[params]
compress/mode=0
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
@@ -23,7 +25,7 @@ compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
+7 -5
View File
@@ -3,19 +3,21 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://dyew66g5dsnt3"
path="res://.godot/imported/kalulu_sprite_sheet.png-3266bfa62ea85333598f1c606ce0e83d.ctex"
path.s3tc="res://.godot/imported/kalulu_sprite_sheet.png-3266bfa62ea85333598f1c606ce0e83d.s3tc.ctex"
path.etc2="res://.godot/imported/kalulu_sprite_sheet.png-3266bfa62ea85333598f1c606ce0e83d.etc2.ctex"
metadata={
"vram_texture": false
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
[deps]
source_file="res://assets/kalulu/kalulu_sprite_sheet.png"
dest_files=["res://.godot/imported/kalulu_sprite_sheet.png-3266bfa62ea85333598f1c606ce0e83d.ctex"]
dest_files=["res://.godot/imported/kalulu_sprite_sheet.png-3266bfa62ea85333598f1c606ce0e83d.s3tc.ctex", "res://.godot/imported/kalulu_sprite_sheet.png-3266bfa62ea85333598f1c606ce0e83d.etc2.ctex"]
[params]
compress/mode=0
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
@@ -23,7 +25,7 @@ compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
+7 -5
View File
@@ -3,19 +3,21 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://cctkobpymorie"
path="res://.godot/imported/kalulu_icon.png-bb597b448cea4ff060aed1f51bb02451.ctex"
path.s3tc="res://.godot/imported/kalulu_icon.png-bb597b448cea4ff060aed1f51bb02451.s3tc.ctex"
path.etc2="res://.godot/imported/kalulu_icon.png-bb597b448cea4ff060aed1f51bb02451.etc2.ctex"
metadata={
"vram_texture": false
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
[deps]
source_file="res://assets/kalulu_icon.png"
dest_files=["res://.godot/imported/kalulu_icon.png-bb597b448cea4ff060aed1f51bb02451.ctex"]
dest_files=["res://.godot/imported/kalulu_icon.png-bb597b448cea4ff060aed1f51bb02451.s3tc.ctex", "res://.godot/imported/kalulu_icon.png-bb597b448cea4ff060aed1f51bb02451.etc2.ctex"]
[params]
compress/mode=0
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
@@ -23,7 +25,7 @@ compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
+7 -5
View File
@@ -3,19 +3,21 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://bb00fhnenbml5"
path="res://.godot/imported/big_button.png-2d1f065099914861a41cb711caf148c4.ctex"
path.s3tc="res://.godot/imported/big_button.png-2d1f065099914861a41cb711caf148c4.s3tc.ctex"
path.etc2="res://.godot/imported/big_button.png-2d1f065099914861a41cb711caf148c4.etc2.ctex"
metadata={
"vram_texture": false
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
[deps]
source_file="res://assets/lesson_screen/big_button.png"
dest_files=["res://.godot/imported/big_button.png-2d1f065099914861a41cb711caf148c4.ctex"]
dest_files=["res://.godot/imported/big_button.png-2d1f065099914861a41cb711caf148c4.s3tc.ctex", "res://.godot/imported/big_button.png-2d1f065099914861a41cb711caf148c4.etc2.ctex"]
[params]
compress/mode=0
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
@@ -23,7 +25,7 @@ compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
@@ -3,19 +3,21 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://dlnklpyefn0m2"
path="res://.godot/imported/big_button_center.png-26d8ff0bd3ec429d10c7fc2ee4fd829c.ctex"
path.s3tc="res://.godot/imported/big_button_center.png-26d8ff0bd3ec429d10c7fc2ee4fd829c.s3tc.ctex"
path.etc2="res://.godot/imported/big_button_center.png-26d8ff0bd3ec429d10c7fc2ee4fd829c.etc2.ctex"
metadata={
"vram_texture": false
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
[deps]
source_file="res://assets/lesson_screen/big_button_center.png"
dest_files=["res://.godot/imported/big_button_center.png-26d8ff0bd3ec429d10c7fc2ee4fd829c.ctex"]
dest_files=["res://.godot/imported/big_button_center.png-26d8ff0bd3ec429d10c7fc2ee4fd829c.s3tc.ctex", "res://.godot/imported/big_button_center.png-26d8ff0bd3ec429d10c7fc2ee4fd829c.etc2.ctex"]
[params]
compress/mode=0
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
@@ -23,7 +25,7 @@ compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
@@ -3,19 +3,21 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://c1i3kqeg7ifoo"
path="res://.godot/imported/video_foreground.png-b57933e17e07d2a26c495548452d5df6.ctex"
path.s3tc="res://.godot/imported/video_foreground.png-b57933e17e07d2a26c495548452d5df6.s3tc.ctex"
path.etc2="res://.godot/imported/video_foreground.png-b57933e17e07d2a26c495548452d5df6.etc2.ctex"
metadata={
"vram_texture": false
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
[deps]
source_file="res://assets/look_and_learn/video_foreground.png"
dest_files=["res://.godot/imported/video_foreground.png-b57933e17e07d2a26c495548452d5df6.ctex"]
dest_files=["res://.godot/imported/video_foreground.png-b57933e17e07d2a26c495548452d5df6.s3tc.ctex", "res://.godot/imported/video_foreground.png-b57933e17e07d2a26c495548452d5df6.etc2.ctex"]
[params]
compress/mode=0
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
@@ -23,7 +25,7 @@ compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
+7 -5
View File
@@ -3,19 +3,21 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://c72ebvussuekg"
path="res://.godot/imported/video_mask.png-115951e1c97d53411f566a917b9ba3fc.ctex"
path.s3tc="res://.godot/imported/video_mask.png-115951e1c97d53411f566a917b9ba3fc.s3tc.ctex"
path.etc2="res://.godot/imported/video_mask.png-115951e1c97d53411f566a917b9ba3fc.etc2.ctex"
metadata={
"vram_texture": false
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
[deps]
source_file="res://assets/look_and_learn/video_mask.png"
dest_files=["res://.godot/imported/video_mask.png-115951e1c97d53411f566a917b9ba3fc.ctex"]
dest_files=["res://.godot/imported/video_mask.png-115951e1c97d53411f566a917b9ba3fc.s3tc.ctex", "res://.godot/imported/video_mask.png-115951e1c97d53411f566a917b9ba3fc.etc2.ctex"]
[params]
compress/mode=0
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
@@ -23,7 +25,7 @@ compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
+7 -5
View File
@@ -3,19 +3,21 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://cw15lg6j37pvj"
path="res://.godot/imported/back_button.png-b90a73672942d9f08b188d6a9f1696a0.ctex"
path.s3tc="res://.godot/imported/back_button.png-b90a73672942d9f08b188d6a9f1696a0.s3tc.ctex"
path.etc2="res://.godot/imported/back_button.png-b90a73672942d9f08b188d6a9f1696a0.etc2.ctex"
metadata={
"vram_texture": false
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
[deps]
source_file="res://assets/menus/back_button.png"
dest_files=["res://.godot/imported/back_button.png-b90a73672942d9f08b188d6a9f1696a0.ctex"]
dest_files=["res://.godot/imported/back_button.png-b90a73672942d9f08b188d6a9f1696a0.s3tc.ctex", "res://.godot/imported/back_button.png-b90a73672942d9f08b188d6a9f1696a0.etc2.ctex"]
[params]
compress/mode=0
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
@@ -23,7 +25,7 @@ compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
@@ -3,19 +3,21 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://7q3lm3o8ihxn"
path="res://.godot/imported/checkbox_transparent_background_checked.png-1dc430c45397b535abbb95e3967216a0.ctex"
path.s3tc="res://.godot/imported/checkbox_transparent_background_checked.png-1dc430c45397b535abbb95e3967216a0.s3tc.ctex"
path.etc2="res://.godot/imported/checkbox_transparent_background_checked.png-1dc430c45397b535abbb95e3967216a0.etc2.ctex"
metadata={
"vram_texture": false
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
[deps]
source_file="res://assets/menus/checkbox_transparent_background_checked.png"
dest_files=["res://.godot/imported/checkbox_transparent_background_checked.png-1dc430c45397b535abbb95e3967216a0.ctex"]
dest_files=["res://.godot/imported/checkbox_transparent_background_checked.png-1dc430c45397b535abbb95e3967216a0.s3tc.ctex", "res://.godot/imported/checkbox_transparent_background_checked.png-1dc430c45397b535abbb95e3967216a0.etc2.ctex"]
[params]
compress/mode=0
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
@@ -23,7 +25,7 @@ compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
@@ -3,19 +3,21 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://s0k8emrncuwk"
path="res://.godot/imported/checkbox_transparent_background_unchecked.png-c25351e55809d2db634289acc1028afb.ctex"
path.s3tc="res://.godot/imported/checkbox_transparent_background_unchecked.png-c25351e55809d2db634289acc1028afb.s3tc.ctex"
path.etc2="res://.godot/imported/checkbox_transparent_background_unchecked.png-c25351e55809d2db634289acc1028afb.etc2.ctex"
metadata={
"vram_texture": false
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
[deps]
source_file="res://assets/menus/checkbox_transparent_background_unchecked.png"
dest_files=["res://.godot/imported/checkbox_transparent_background_unchecked.png-c25351e55809d2db634289acc1028afb.ctex"]
dest_files=["res://.godot/imported/checkbox_transparent_background_unchecked.png-c25351e55809d2db634289acc1028afb.s3tc.ctex", "res://.godot/imported/checkbox_transparent_background_unchecked.png-c25351e55809d2db634289acc1028afb.etc2.ctex"]
[params]
compress/mode=0
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
@@ -23,7 +25,7 @@ compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
@@ -3,19 +3,21 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://dji28uchuubxn"
path="res://.godot/imported/checkbox_white_background_checked.png-9b80aad00e4db61e15654feeadb8e668.ctex"
path.s3tc="res://.godot/imported/checkbox_white_background_checked.png-9b80aad00e4db61e15654feeadb8e668.s3tc.ctex"
path.etc2="res://.godot/imported/checkbox_white_background_checked.png-9b80aad00e4db61e15654feeadb8e668.etc2.ctex"
metadata={
"vram_texture": false
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
[deps]
source_file="res://assets/menus/checkbox_white_background_checked.png"
dest_files=["res://.godot/imported/checkbox_white_background_checked.png-9b80aad00e4db61e15654feeadb8e668.ctex"]
dest_files=["res://.godot/imported/checkbox_white_background_checked.png-9b80aad00e4db61e15654feeadb8e668.s3tc.ctex", "res://.godot/imported/checkbox_white_background_checked.png-9b80aad00e4db61e15654feeadb8e668.etc2.ctex"]
[params]
compress/mode=0
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
@@ -23,7 +25,7 @@ compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
@@ -3,19 +3,21 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://d32u1cm8m7wiw"
path="res://.godot/imported/checkbox_white_background_unchecked.png-7209fcc9e04c13a80ed4396aec64cf23.ctex"
path.s3tc="res://.godot/imported/checkbox_white_background_unchecked.png-7209fcc9e04c13a80ed4396aec64cf23.s3tc.ctex"
path.etc2="res://.godot/imported/checkbox_white_background_unchecked.png-7209fcc9e04c13a80ed4396aec64cf23.etc2.ctex"
metadata={
"vram_texture": false
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
[deps]
source_file="res://assets/menus/checkbox_white_background_unchecked.png"
dest_files=["res://.godot/imported/checkbox_white_background_unchecked.png-7209fcc9e04c13a80ed4396aec64cf23.ctex"]
dest_files=["res://.godot/imported/checkbox_white_background_unchecked.png-7209fcc9e04c13a80ed4396aec64cf23.s3tc.ctex", "res://.godot/imported/checkbox_white_background_unchecked.png-7209fcc9e04c13a80ed4396aec64cf23.etc2.ctex"]
[params]
compress/mode=0
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
@@ -23,7 +25,7 @@ compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
@@ -3,19 +3,21 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://d3rhl050u0ahl"
path="res://.godot/imported/password_background.png-6cae367f4dcff551398f76cfd245c9cc.ctex"
path.s3tc="res://.godot/imported/password_background.png-6cae367f4dcff551398f76cfd245c9cc.s3tc.ctex"
path.etc2="res://.godot/imported/password_background.png-6cae367f4dcff551398f76cfd245c9cc.etc2.ctex"
metadata={
"vram_texture": false
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
[deps]
source_file="res://assets/menus/login/password_background.png"
dest_files=["res://.godot/imported/password_background.png-6cae367f4dcff551398f76cfd245c9cc.ctex"]
dest_files=["res://.godot/imported/password_background.png-6cae367f4dcff551398f76cfd245c9cc.s3tc.ctex", "res://.godot/imported/password_background.png-6cae367f4dcff551398f76cfd245c9cc.etc2.ctex"]
[params]
compress/mode=0
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
@@ -23,7 +25,7 @@ compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
@@ -3,19 +3,21 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://wylvu8nc54ow"
path="res://.godot/imported/blue_palm.png-fde1444fb2a9b8953e11e503abac50b6.ctex"
path.s3tc="res://.godot/imported/blue_palm.png-fde1444fb2a9b8953e11e503abac50b6.s3tc.ctex"
path.etc2="res://.godot/imported/blue_palm.png-fde1444fb2a9b8953e11e503abac50b6.etc2.ctex"
metadata={
"vram_texture": false
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
[deps]
source_file="res://assets/menus/main/plants/blue_palm.png"
dest_files=["res://.godot/imported/blue_palm.png-fde1444fb2a9b8953e11e503abac50b6.ctex"]
dest_files=["res://.godot/imported/blue_palm.png-fde1444fb2a9b8953e11e503abac50b6.s3tc.ctex", "res://.godot/imported/blue_palm.png-fde1444fb2a9b8953e11e503abac50b6.etc2.ctex"]
[params]
compress/mode=0
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
@@ -23,7 +25,7 @@ compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
+7 -5
View File
@@ -3,19 +3,21 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://digxl4htxkdqp"
path="res://.godot/imported/bush.png-f0aa119f63952acb9b3a855ebd06acef.ctex"
path.s3tc="res://.godot/imported/bush.png-f0aa119f63952acb9b3a855ebd06acef.s3tc.ctex"
path.etc2="res://.godot/imported/bush.png-f0aa119f63952acb9b3a855ebd06acef.etc2.ctex"
metadata={
"vram_texture": false
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
[deps]
source_file="res://assets/menus/main/plants/bush.png"
dest_files=["res://.godot/imported/bush.png-f0aa119f63952acb9b3a855ebd06acef.ctex"]
dest_files=["res://.godot/imported/bush.png-f0aa119f63952acb9b3a855ebd06acef.s3tc.ctex", "res://.godot/imported/bush.png-f0aa119f63952acb9b3a855ebd06acef.etc2.ctex"]
[params]
compress/mode=0
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
@@ -23,7 +25,7 @@ compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
@@ -3,19 +3,21 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://dgsekh110qlse"
path="res://.godot/imported/flower_body.png-6619db38044cad3f1bef2b5c752a3c4a.ctex"
path.s3tc="res://.godot/imported/flower_body.png-6619db38044cad3f1bef2b5c752a3c4a.s3tc.ctex"
path.etc2="res://.godot/imported/flower_body.png-6619db38044cad3f1bef2b5c752a3c4a.etc2.ctex"
metadata={
"vram_texture": false
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
[deps]
source_file="res://assets/menus/main/plants/flower_body.png"
dest_files=["res://.godot/imported/flower_body.png-6619db38044cad3f1bef2b5c752a3c4a.ctex"]
dest_files=["res://.godot/imported/flower_body.png-6619db38044cad3f1bef2b5c752a3c4a.s3tc.ctex", "res://.godot/imported/flower_body.png-6619db38044cad3f1bef2b5c752a3c4a.etc2.ctex"]
[params]
compress/mode=0
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
@@ -23,7 +25,7 @@ compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
@@ -3,19 +3,21 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://b6l305fj6ynnv"
path="res://.godot/imported/large_flower_body.png-c7e3feabfe10a2a72c7bc6800559fd5b.ctex"
path.s3tc="res://.godot/imported/large_flower_body.png-c7e3feabfe10a2a72c7bc6800559fd5b.s3tc.ctex"
path.etc2="res://.godot/imported/large_flower_body.png-c7e3feabfe10a2a72c7bc6800559fd5b.etc2.ctex"
metadata={
"vram_texture": false
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
[deps]
source_file="res://assets/menus/main/plants/large_flower_body.png"
dest_files=["res://.godot/imported/large_flower_body.png-c7e3feabfe10a2a72c7bc6800559fd5b.ctex"]
dest_files=["res://.godot/imported/large_flower_body.png-c7e3feabfe10a2a72c7bc6800559fd5b.s3tc.ctex", "res://.godot/imported/large_flower_body.png-c7e3feabfe10a2a72c7bc6800559fd5b.etc2.ctex"]
[params]
compress/mode=0
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
@@ -23,7 +25,7 @@ compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
@@ -3,19 +3,21 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://bbip3wpyidt1q"
path="res://.godot/imported/play_button_mask.png-5ad05aadb5116990ffd618e8dac49d33.ctex"
path.s3tc="res://.godot/imported/play_button_mask.png-5ad05aadb5116990ffd618e8dac49d33.s3tc.ctex"
path.etc2="res://.godot/imported/play_button_mask.png-5ad05aadb5116990ffd618e8dac49d33.etc2.ctex"
metadata={
"vram_texture": false
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
[deps]
source_file="res://assets/menus/main/play_button_mask.png"
dest_files=["res://.godot/imported/play_button_mask.png-5ad05aadb5116990ffd618e8dac49d33.ctex"]
dest_files=["res://.godot/imported/play_button_mask.png-5ad05aadb5116990ffd618e8dac49d33.s3tc.ctex", "res://.godot/imported/play_button_mask.png-5ad05aadb5116990ffd618e8dac49d33.etc2.ctex"]
[params]
compress/mode=0
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
@@ -23,7 +25,7 @@ compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
+7 -5
View File
@@ -3,19 +3,21 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://cgrl5x2iqbiwg"
path="res://.godot/imported/title.png-92c5b7d29f2f2dfe55a460207b8210ce.ctex"
path.s3tc="res://.godot/imported/title.png-92c5b7d29f2f2dfe55a460207b8210ce.s3tc.ctex"
path.etc2="res://.godot/imported/title.png-92c5b7d29f2f2dfe55a460207b8210ce.etc2.ctex"
metadata={
"vram_texture": false
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
[deps]
source_file="res://assets/menus/main/title.png"
dest_files=["res://.godot/imported/title.png-92c5b7d29f2f2dfe55a460207b8210ce.ctex"]
dest_files=["res://.godot/imported/title.png-92c5b7d29f2f2dfe55a460207b8210ce.s3tc.ctex", "res://.godot/imported/title.png-92c5b7d29f2f2dfe55a460207b8210ce.etc2.ctex"]
[params]
compress/mode=0
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
@@ -23,7 +25,7 @@ compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
+7 -5
View File
@@ -3,19 +3,21 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://c5jiyxrmmjmdb"
path="res://.godot/imported/modify_button.png-2b8dde2439c7c1a06f1d07c9263d0418.ctex"
path.s3tc="res://.godot/imported/modify_button.png-2b8dde2439c7c1a06f1d07c9263d0418.s3tc.ctex"
path.etc2="res://.godot/imported/modify_button.png-2b8dde2439c7c1a06f1d07c9263d0418.etc2.ctex"
metadata={
"vram_texture": false
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
[deps]
source_file="res://assets/menus/modify_button.png"
dest_files=["res://.godot/imported/modify_button.png-2b8dde2439c7c1a06f1d07c9263d0418.ctex"]
dest_files=["res://.godot/imported/modify_button.png-2b8dde2439c7c1a06f1d07c9263d0418.s3tc.ctex", "res://.godot/imported/modify_button.png-2b8dde2439c7c1a06f1d07c9263d0418.etc2.ctex"]
[params]
compress/mode=0
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
@@ -23,7 +25,7 @@ compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
+7 -5
View File
@@ -3,19 +3,21 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://ctike5jfpr68v"
path="res://.godot/imported/play_button.png-00741f6ebfe0fb1aa0a4531c109dd421.ctex"
path.s3tc="res://.godot/imported/play_button.png-00741f6ebfe0fb1aa0a4531c109dd421.s3tc.ctex"
path.etc2="res://.godot/imported/play_button.png-00741f6ebfe0fb1aa0a4531c109dd421.etc2.ctex"
metadata={
"vram_texture": false
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
[deps]
source_file="res://assets/menus/play_button.png"
dest_files=["res://.godot/imported/play_button.png-00741f6ebfe0fb1aa0a4531c109dd421.ctex"]
dest_files=["res://.godot/imported/play_button.png-00741f6ebfe0fb1aa0a4531c109dd421.s3tc.ctex", "res://.godot/imported/play_button.png-00741f6ebfe0fb1aa0a4531c109dd421.etc2.ctex"]
[params]
compress/mode=0
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
@@ -23,7 +25,7 @@ compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
+7 -5
View File
@@ -3,19 +3,21 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://ouhnm00r8rt6"
path="res://.godot/imported/plus_button.png-df33a515f03310d6c8b09c259ab5bb94.ctex"
path.s3tc="res://.godot/imported/plus_button.png-df33a515f03310d6c8b09c259ab5bb94.s3tc.ctex"
path.etc2="res://.godot/imported/plus_button.png-df33a515f03310d6c8b09c259ab5bb94.etc2.ctex"
metadata={
"vram_texture": false
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
[deps]
source_file="res://assets/menus/plus_button.png"
dest_files=["res://.godot/imported/plus_button.png-df33a515f03310d6c8b09c259ab5bb94.ctex"]
dest_files=["res://.godot/imported/plus_button.png-df33a515f03310d6c8b09c259ab5bb94.s3tc.ctex", "res://.godot/imported/plus_button.png-df33a515f03310d6c8b09c259ab5bb94.etc2.ctex"]
[params]
compress/mode=0
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
@@ -23,7 +25,7 @@ compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
+7 -5
View File
@@ -3,19 +3,21 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://5n02dxd66fw4"
path="res://.godot/imported/save_button.png-e0abff5de73db7c1ad84988080c20282.ctex"
path.s3tc="res://.godot/imported/save_button.png-e0abff5de73db7c1ad84988080c20282.s3tc.ctex"
path.etc2="res://.godot/imported/save_button.png-e0abff5de73db7c1ad84988080c20282.etc2.ctex"
metadata={
"vram_texture": false
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
[deps]
source_file="res://assets/menus/save_button.png"
dest_files=["res://.godot/imported/save_button.png-e0abff5de73db7c1ad84988080c20282.ctex"]
dest_files=["res://.godot/imported/save_button.png-e0abff5de73db7c1ad84988080c20282.s3tc.ctex", "res://.godot/imported/save_button.png-e0abff5de73db7c1ad84988080c20282.etc2.ctex"]
[params]
compress/mode=0
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
@@ -23,7 +25,7 @@ compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
+7 -5
View File
@@ -3,19 +3,21 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://cs7v0nap5hadi"
path="res://.godot/imported/save_ok.png-00f2e75f4737ed4b80b793ebf1493136.ctex"
path.s3tc="res://.godot/imported/save_ok.png-00f2e75f4737ed4b80b793ebf1493136.s3tc.ctex"
path.etc2="res://.godot/imported/save_ok.png-00f2e75f4737ed4b80b793ebf1493136.etc2.ctex"
metadata={
"vram_texture": false
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
[deps]
source_file="res://assets/menus/save_ok.png"
dest_files=["res://.godot/imported/save_ok.png-00f2e75f4737ed4b80b793ebf1493136.ctex"]
dest_files=["res://.godot/imported/save_ok.png-00f2e75f4737ed4b80b793ebf1493136.s3tc.ctex", "res://.godot/imported/save_ok.png-00f2e75f4737ed4b80b793ebf1493136.etc2.ctex"]
[params]
compress/mode=0
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
@@ -23,7 +25,7 @@ compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
+7 -5
View File
@@ -3,19 +3,21 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://5fffpm7hc12k"
path="res://.godot/imported/upload.png-34db21b9ba0699b5022e0a6835ec0d43.ctex"
path.s3tc="res://.godot/imported/upload.png-34db21b9ba0699b5022e0a6835ec0d43.s3tc.ctex"
path.etc2="res://.godot/imported/upload.png-34db21b9ba0699b5022e0a6835ec0d43.etc2.ctex"
metadata={
"vram_texture": false
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
[deps]
source_file="res://assets/menus/upload.png"
dest_files=["res://.godot/imported/upload.png-34db21b9ba0699b5022e0a6835ec0d43.ctex"]
dest_files=["res://.godot/imported/upload.png-34db21b9ba0699b5022e0a6835ec0d43.s3tc.ctex", "res://.godot/imported/upload.png-34db21b9ba0699b5022e0a6835ec0d43.etc2.ctex"]
[params]
compress/mode=0
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
@@ -23,7 +25,7 @@ compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
@@ -3,19 +3,21 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://cfd278lhnobop"
path="res://.godot/imported/ant_spritesheet.png-c145cf97a43c25c5c71895b7ed6c1eb5.ctex"
path.s3tc="res://.godot/imported/ant_spritesheet.png-c145cf97a43c25c5c71895b7ed6c1eb5.s3tc.ctex"
path.etc2="res://.godot/imported/ant_spritesheet.png-c145cf97a43c25c5c71895b7ed6c1eb5.etc2.ctex"
metadata={
"vram_texture": false
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
[deps]
source_file="res://assets/minigames/ants/graphics/ant_spritesheet.png"
dest_files=["res://.godot/imported/ant_spritesheet.png-c145cf97a43c25c5c71895b7ed6c1eb5.ctex"]
dest_files=["res://.godot/imported/ant_spritesheet.png-c145cf97a43c25c5c71895b7ed6c1eb5.s3tc.ctex", "res://.godot/imported/ant_spritesheet.png-c145cf97a43c25c5c71895b7ed6c1eb5.etc2.ctex"]
[params]
compress/mode=0
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
@@ -23,7 +25,7 @@ compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
@@ -3,19 +3,21 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://b2mj2s3o22i8p"
path="res://.godot/imported/background.png-2ea3da1f26612f4fe38c08e4c10a6033.ctex"
path.s3tc="res://.godot/imported/background.png-2ea3da1f26612f4fe38c08e4c10a6033.s3tc.ctex"
path.etc2="res://.godot/imported/background.png-2ea3da1f26612f4fe38c08e4c10a6033.etc2.ctex"
metadata={
"vram_texture": false
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
[deps]
source_file="res://assets/minigames/ants/graphics/background.png"
dest_files=["res://.godot/imported/background.png-2ea3da1f26612f4fe38c08e4c10a6033.ctex"]
dest_files=["res://.godot/imported/background.png-2ea3da1f26612f4fe38c08e4c10a6033.s3tc.ctex", "res://.godot/imported/background.png-2ea3da1f26612f4fe38c08e4c10a6033.etc2.ctex"]
[params]
compress/mode=0
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
@@ -23,7 +25,7 @@ compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
@@ -3,19 +3,21 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://b2bcmo1keh217"
path="res://.godot/imported/sentence_text_box.png-26340fa40aaa48e743d64966bd2c4afa.ctex"
path.s3tc="res://.godot/imported/sentence_text_box.png-26340fa40aaa48e743d64966bd2c4afa.s3tc.ctex"
path.etc2="res://.godot/imported/sentence_text_box.png-26340fa40aaa48e743d64966bd2c4afa.etc2.ctex"
metadata={
"vram_texture": false
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
[deps]
source_file="res://assets/minigames/ants/graphics/sentence_text_box.png"
dest_files=["res://.godot/imported/sentence_text_box.png-26340fa40aaa48e743d64966bd2c4afa.ctex"]
dest_files=["res://.godot/imported/sentence_text_box.png-26340fa40aaa48e743d64966bd2c4afa.s3tc.ctex", "res://.godot/imported/sentence_text_box.png-26340fa40aaa48e743d64966bd2c4afa.etc2.ctex"]
[params]
compress/mode=0
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
@@ -23,7 +25,7 @@ compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
+7 -5
View File
@@ -3,19 +3,21 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://ccfocxdqxujvc"
path="res://.godot/imported/background.png-c8fad62adf6e7e725e8f4fa28351428b.ctex"
path.s3tc="res://.godot/imported/background.png-c8fad62adf6e7e725e8f4fa28351428b.s3tc.ctex"
path.etc2="res://.godot/imported/background.png-c8fad62adf6e7e725e8f4fa28351428b.etc2.ctex"
metadata={
"vram_texture": false
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
[deps]
source_file="res://assets/minigames/boss/background.png"
dest_files=["res://.godot/imported/background.png-c8fad62adf6e7e725e8f4fa28351428b.ctex"]
dest_files=["res://.godot/imported/background.png-c8fad62adf6e7e725e8f4fa28351428b.s3tc.ctex", "res://.godot/imported/background.png-c8fad62adf6e7e725e8f4fa28351428b.etc2.ctex"]
[params]
compress/mode=0
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
@@ -23,7 +25,7 @@ compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
+7 -5
View File
@@ -3,19 +3,21 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://7w2e4mo7yssm"
path="res://.godot/imported/foreground.png-6c2554e6685390cee51239dbfa88c3c1.ctex"
path.s3tc="res://.godot/imported/foreground.png-6c2554e6685390cee51239dbfa88c3c1.s3tc.ctex"
path.etc2="res://.godot/imported/foreground.png-6c2554e6685390cee51239dbfa88c3c1.etc2.ctex"
metadata={
"vram_texture": false
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
[deps]
source_file="res://assets/minigames/boss/foreground.png"
dest_files=["res://.godot/imported/foreground.png-6c2554e6685390cee51239dbfa88c3c1.ctex"]
dest_files=["res://.godot/imported/foreground.png-6c2554e6685390cee51239dbfa88c3c1.s3tc.ctex", "res://.godot/imported/foreground.png-6c2554e6685390cee51239dbfa88c3c1.etc2.ctex"]
[params]
compress/mode=0
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
@@ -23,7 +25,7 @@ compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
@@ -3,19 +3,21 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://bk4k8v5yrolt1"
path="res://.godot/imported/frame_corner.png-63662e0fcc6898223ce9b85ff1d1ada3.ctex"
path.s3tc="res://.godot/imported/frame_corner.png-63662e0fcc6898223ce9b85ff1d1ada3.s3tc.ctex"
path.etc2="res://.godot/imported/frame_corner.png-63662e0fcc6898223ce9b85ff1d1ada3.etc2.ctex"
metadata={
"vram_texture": false
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
[deps]
source_file="res://assets/minigames/boss/frame_corner.png"
dest_files=["res://.godot/imported/frame_corner.png-63662e0fcc6898223ce9b85ff1d1ada3.ctex"]
dest_files=["res://.godot/imported/frame_corner.png-63662e0fcc6898223ce9b85ff1d1ada3.s3tc.ctex", "res://.godot/imported/frame_corner.png-63662e0fcc6898223ce9b85ff1d1ada3.etc2.ctex"]
[params]
compress/mode=0
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
@@ -23,7 +25,7 @@ compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
@@ -3,19 +3,21 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://bp3t4elur5y1y"
path="res://.godot/imported/kalulu_sheet.png-a82ac9402c5205b4531b3cd17bec0bc7.ctex"
path.s3tc="res://.godot/imported/kalulu_sheet.png-a82ac9402c5205b4531b3cd17bec0bc7.s3tc.ctex"
path.etc2="res://.godot/imported/kalulu_sheet.png-a82ac9402c5205b4531b3cd17bec0bc7.etc2.ctex"
metadata={
"vram_texture": false
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
[deps]
source_file="res://assets/minigames/boss/kalulu_sheet.png"
dest_files=["res://.godot/imported/kalulu_sheet.png-a82ac9402c5205b4531b3cd17bec0bc7.ctex"]
dest_files=["res://.godot/imported/kalulu_sheet.png-a82ac9402c5205b4531b3cd17bec0bc7.s3tc.ctex", "res://.godot/imported/kalulu_sheet.png-a82ac9402c5205b4531b3cd17bec0bc7.etc2.ctex"]
[params]
compress/mode=0
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
@@ -23,7 +25,7 @@ compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
+7 -5
View File
@@ -3,19 +3,21 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://bf7od6f56f516"
path="res://.godot/imported/sun.png-dfa55dd52b824f292c3e99dd864a9f89.ctex"
path.s3tc="res://.godot/imported/sun.png-dfa55dd52b824f292c3e99dd864a9f89.s3tc.ctex"
path.etc2="res://.godot/imported/sun.png-dfa55dd52b824f292c3e99dd864a9f89.etc2.ctex"
metadata={
"vram_texture": false
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
[deps]
source_file="res://assets/minigames/boss/sun.png"
dest_files=["res://.godot/imported/sun.png-dfa55dd52b824f292c3e99dd864a9f89.ctex"]
dest_files=["res://.godot/imported/sun.png-dfa55dd52b824f292c3e99dd864a9f89.s3tc.ctex", "res://.godot/imported/sun.png-dfa55dd52b824f292c3e99dd864a9f89.etc2.ctex"]
[params]
compress/mode=0
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
@@ -23,7 +25,7 @@ compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
@@ -3,19 +3,21 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://cdmfxx6kt5tla"
path="res://.godot/imported/text_box_long.png-c072665becb3889915217183915e2a64.ctex"
path.s3tc="res://.godot/imported/text_box_long.png-c072665becb3889915217183915e2a64.s3tc.ctex"
path.etc2="res://.godot/imported/text_box_long.png-c072665becb3889915217183915e2a64.etc2.ctex"
metadata={
"vram_texture": false
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
[deps]
source_file="res://assets/minigames/boss/text_box_long.png"
dest_files=["res://.godot/imported/text_box_long.png-c072665becb3889915217183915e2a64.ctex"]
dest_files=["res://.godot/imported/text_box_long.png-c072665becb3889915217183915e2a64.s3tc.ctex", "res://.godot/imported/text_box_long.png-c072665becb3889915217183915e2a64.etc2.ctex"]
[params]
compress/mode=0
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
@@ -23,7 +25,7 @@ compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
@@ -3,19 +3,21 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://bs1twkddxu31y"
path="res://.godot/imported/text_box_long_outline_dotted.png-fb9c3aa3bc07c3ddb16a444d48552d6d.ctex"
path.s3tc="res://.godot/imported/text_box_long_outline_dotted.png-fb9c3aa3bc07c3ddb16a444d48552d6d.s3tc.ctex"
path.etc2="res://.godot/imported/text_box_long_outline_dotted.png-fb9c3aa3bc07c3ddb16a444d48552d6d.etc2.ctex"
metadata={
"vram_texture": false
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
[deps]
source_file="res://assets/minigames/boss/text_box_long_outline_dotted.png"
dest_files=["res://.godot/imported/text_box_long_outline_dotted.png-fb9c3aa3bc07c3ddb16a444d48552d6d.ctex"]
dest_files=["res://.godot/imported/text_box_long_outline_dotted.png-fb9c3aa3bc07c3ddb16a444d48552d6d.s3tc.ctex", "res://.godot/imported/text_box_long_outline_dotted.png-fb9c3aa3bc07c3ddb16a444d48552d6d.etc2.ctex"]
[params]
compress/mode=0
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
@@ -23,7 +25,7 @@ compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
@@ -3,19 +3,21 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://cdc5fnfdssjnt"
path="res://.godot/imported/background.png-e5b0237b67a0798fe1413ecef451510a.ctex"
path.s3tc="res://.godot/imported/background.png-e5b0237b67a0798fe1413ecef451510a.s3tc.ctex"
path.etc2="res://.godot/imported/background.png-e5b0237b67a0798fe1413ecef451510a.etc2.ctex"
metadata={
"vram_texture": false
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
[deps]
source_file="res://assets/minigames/caterpillar/graphics/background.png"
dest_files=["res://.godot/imported/background.png-e5b0237b67a0798fe1413ecef451510a.ctex"]
dest_files=["res://.godot/imported/background.png-e5b0237b67a0798fe1413ecef451510a.s3tc.ctex", "res://.godot/imported/background.png-e5b0237b67a0798fe1413ecef451510a.etc2.ctex"]
[params]
compress/mode=0
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
@@ -23,7 +25,7 @@ compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
@@ -3,19 +3,21 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://cyxl5ep0vuavl"
path="res://.godot/imported/caterpillar_spritesheet.png-e15320a7c10244419bd956df1a0959b8.ctex"
path.s3tc="res://.godot/imported/caterpillar_spritesheet.png-e15320a7c10244419bd956df1a0959b8.s3tc.ctex"
path.etc2="res://.godot/imported/caterpillar_spritesheet.png-e15320a7c10244419bd956df1a0959b8.etc2.ctex"
metadata={
"vram_texture": false
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
[deps]
source_file="res://assets/minigames/caterpillar/graphics/caterpillar_spritesheet.png"
dest_files=["res://.godot/imported/caterpillar_spritesheet.png-e15320a7c10244419bd956df1a0959b8.ctex"]
dest_files=["res://.godot/imported/caterpillar_spritesheet.png-e15320a7c10244419bd956df1a0959b8.s3tc.ctex", "res://.godot/imported/caterpillar_spritesheet.png-e15320a7c10244419bd956df1a0959b8.etc2.ctex"]
[params]
compress/mode=0
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
@@ -23,7 +25,7 @@ compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
@@ -3,19 +3,21 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://5bx8ugh178j1"
path="res://.godot/imported/background.png-5e0210e87298ac6e04e95c7ece34e89d.ctex"
path.s3tc="res://.godot/imported/background.png-5e0210e87298ac6e04e95c7ece34e89d.s3tc.ctex"
path.etc2="res://.godot/imported/background.png-5e0210e87298ac6e04e95c7ece34e89d.etc2.ctex"
metadata={
"vram_texture": false
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
[deps]
source_file="res://assets/minigames/crabs/graphic/background.png"
dest_files=["res://.godot/imported/background.png-5e0210e87298ac6e04e95c7ece34e89d.ctex"]
dest_files=["res://.godot/imported/background.png-5e0210e87298ac6e04e95c7ece34e89d.s3tc.ctex", "res://.godot/imported/background.png-5e0210e87298ac6e04e95c7ece34e89d.etc2.ctex"]
[params]
compress/mode=0
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
@@ -23,7 +25,7 @@ compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
@@ -3,19 +3,21 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://cq50syf8jy8ol"
path="res://.godot/imported/background_2.png-ba5099ea1fd9498d48ea323a8cd4c300.ctex"
path.s3tc="res://.godot/imported/background_2.png-ba5099ea1fd9498d48ea323a8cd4c300.s3tc.ctex"
path.etc2="res://.godot/imported/background_2.png-ba5099ea1fd9498d48ea323a8cd4c300.etc2.ctex"
metadata={
"vram_texture": false
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
[deps]
source_file="res://assets/minigames/crabs/graphic/background_2.png"
dest_files=["res://.godot/imported/background_2.png-ba5099ea1fd9498d48ea323a8cd4c300.ctex"]
dest_files=["res://.godot/imported/background_2.png-ba5099ea1fd9498d48ea323a8cd4c300.s3tc.ctex", "res://.godot/imported/background_2.png-ba5099ea1fd9498d48ea323a8cd4c300.etc2.ctex"]
[params]
compress/mode=0
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
@@ -23,7 +25,7 @@ compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
@@ -3,19 +3,21 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://cjxvog1y6wkfv"
path="res://.godot/imported/crab_spritesheet.png-21dddf90618c171f86c1406c488930a2.ctex"
path.s3tc="res://.godot/imported/crab_spritesheet.png-21dddf90618c171f86c1406c488930a2.s3tc.ctex"
path.etc2="res://.godot/imported/crab_spritesheet.png-21dddf90618c171f86c1406c488930a2.etc2.ctex"
metadata={
"vram_texture": false
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
[deps]
source_file="res://assets/minigames/crabs/graphic/crab_spritesheet.png"
dest_files=["res://.godot/imported/crab_spritesheet.png-21dddf90618c171f86c1406c488930a2.ctex"]
dest_files=["res://.godot/imported/crab_spritesheet.png-21dddf90618c171f86c1406c488930a2.s3tc.ctex", "res://.godot/imported/crab_spritesheet.png-21dddf90618c171f86c1406c488930a2.etc2.ctex"]
[params]
compress/mode=0
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
@@ -23,7 +25,7 @@ compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
@@ -3,19 +3,21 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://7nrlmc7opox1"
path="res://.godot/imported/hole_mask.png-ecebdf144a2374016c42ccc2a8a47cb6.ctex"
path.s3tc="res://.godot/imported/hole_mask.png-ecebdf144a2374016c42ccc2a8a47cb6.s3tc.ctex"
path.etc2="res://.godot/imported/hole_mask.png-ecebdf144a2374016c42ccc2a8a47cb6.etc2.ctex"
metadata={
"vram_texture": false
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
[deps]
source_file="res://assets/minigames/crabs/graphic/hole_mask.png"
dest_files=["res://.godot/imported/hole_mask.png-ecebdf144a2374016c42ccc2a8a47cb6.ctex"]
dest_files=["res://.godot/imported/hole_mask.png-ecebdf144a2374016c42ccc2a8a47cb6.s3tc.ctex", "res://.godot/imported/hole_mask.png-ecebdf144a2374016c42ccc2a8a47cb6.etc2.ctex"]
[params]
compress/mode=0
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
@@ -23,7 +25,7 @@ compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
@@ -3,19 +3,21 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://bgi4vveige3qv"
path="res://.godot/imported/background.png-0bda5ad31681b25cd22b6a2490c9350f.ctex"
path.s3tc="res://.godot/imported/background.png-0bda5ad31681b25cd22b6a2490c9350f.s3tc.ctex"
path.etc2="res://.godot/imported/background.png-0bda5ad31681b25cd22b6a2490c9350f.etc2.ctex"
metadata={
"vram_texture": false
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
[deps]
source_file="res://assets/minigames/frog/graphics/background.png"
dest_files=["res://.godot/imported/background.png-0bda5ad31681b25cd22b6a2490c9350f.ctex"]
dest_files=["res://.godot/imported/background.png-0bda5ad31681b25cd22b6a2490c9350f.s3tc.ctex", "res://.godot/imported/background.png-0bda5ad31681b25cd22b6a2490c9350f.etc2.ctex"]
[params]
compress/mode=0
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
@@ -23,7 +25,7 @@ compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
@@ -3,19 +3,21 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://g1pr0xqbmwcb"
path="res://.godot/imported/background_river.png-0d804af2e42cc58cea90b820caca7c44.ctex"
path.s3tc="res://.godot/imported/background_river.png-0d804af2e42cc58cea90b820caca7c44.s3tc.ctex"
path.etc2="res://.godot/imported/background_river.png-0d804af2e42cc58cea90b820caca7c44.etc2.ctex"
metadata={
"vram_texture": false
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
[deps]
source_file="res://assets/minigames/frog/graphics/background_river.png"
dest_files=["res://.godot/imported/background_river.png-0d804af2e42cc58cea90b820caca7c44.ctex"]
dest_files=["res://.godot/imported/background_river.png-0d804af2e42cc58cea90b820caca7c44.s3tc.ctex", "res://.godot/imported/background_river.png-0d804af2e42cc58cea90b820caca7c44.etc2.ctex"]
[params]
compress/mode=0
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
@@ -23,7 +25,7 @@ compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
@@ -3,19 +3,21 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://bmrp8ybx5iqgu"
path="res://.godot/imported/frog_spritesheet.png-76c0a7d8c426412ed0eb71ab671bbaeb.ctex"
path.s3tc="res://.godot/imported/frog_spritesheet.png-76c0a7d8c426412ed0eb71ab671bbaeb.s3tc.ctex"
path.etc2="res://.godot/imported/frog_spritesheet.png-76c0a7d8c426412ed0eb71ab671bbaeb.etc2.ctex"
metadata={
"vram_texture": false
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
[deps]
source_file="res://assets/minigames/frog/graphics/frog_spritesheet.png"
dest_files=["res://.godot/imported/frog_spritesheet.png-76c0a7d8c426412ed0eb71ab671bbaeb.ctex"]
dest_files=["res://.godot/imported/frog_spritesheet.png-76c0a7d8c426412ed0eb71ab671bbaeb.s3tc.ctex", "res://.godot/imported/frog_spritesheet.png-76c0a7d8c426412ed0eb71ab671bbaeb.etc2.ctex"]
[params]
compress/mode=0
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
@@ -23,7 +25,7 @@ compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
@@ -3,19 +3,21 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://d60ylt2dvc2s"
path="res://.godot/imported/background.png-efb3c9298c89dad479689fd212c0f1b2.ctex"
path.s3tc="res://.godot/imported/background.png-efb3c9298c89dad479689fd212c0f1b2.s3tc.ctex"
path.etc2="res://.godot/imported/background.png-efb3c9298c89dad479689fd212c0f1b2.etc2.ctex"
metadata={
"vram_texture": false
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
[deps]
source_file="res://assets/minigames/jellyfish/graphic/background.png"
dest_files=["res://.godot/imported/background.png-efb3c9298c89dad479689fd212c0f1b2.ctex"]
dest_files=["res://.godot/imported/background.png-efb3c9298c89dad479689fd212c0f1b2.s3tc.ctex", "res://.godot/imported/background.png-efb3c9298c89dad479689fd212c0f1b2.etc2.ctex"]
[params]
compress/mode=0
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
@@ -23,7 +25,7 @@ compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
@@ -3,19 +3,21 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://8pqgvcr4wukd"
path="res://.godot/imported/blue_jellyfish_layer_1.png-ded26697e61821a4af17afb6bd58f89e.ctex"
path.s3tc="res://.godot/imported/blue_jellyfish_layer_1.png-ded26697e61821a4af17afb6bd58f89e.s3tc.ctex"
path.etc2="res://.godot/imported/blue_jellyfish_layer_1.png-ded26697e61821a4af17afb6bd58f89e.etc2.ctex"
metadata={
"vram_texture": false
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
[deps]
source_file="res://assets/minigames/jellyfish/graphic/blue_jellyfish_layer_1.png"
dest_files=["res://.godot/imported/blue_jellyfish_layer_1.png-ded26697e61821a4af17afb6bd58f89e.ctex"]
dest_files=["res://.godot/imported/blue_jellyfish_layer_1.png-ded26697e61821a4af17afb6bd58f89e.s3tc.ctex", "res://.godot/imported/blue_jellyfish_layer_1.png-ded26697e61821a4af17afb6bd58f89e.etc2.ctex"]
[params]
compress/mode=0
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
@@ -23,7 +25,7 @@ compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
@@ -3,19 +3,21 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://b68gvx4lwqked"
path="res://.godot/imported/blue_jellyfish_layer_2.png-d48d07d14a16b9ae424f0aa828c6c78a.ctex"
path.s3tc="res://.godot/imported/blue_jellyfish_layer_2.png-d48d07d14a16b9ae424f0aa828c6c78a.s3tc.ctex"
path.etc2="res://.godot/imported/blue_jellyfish_layer_2.png-d48d07d14a16b9ae424f0aa828c6c78a.etc2.ctex"
metadata={
"vram_texture": false
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
[deps]
source_file="res://assets/minigames/jellyfish/graphic/blue_jellyfish_layer_2.png"
dest_files=["res://.godot/imported/blue_jellyfish_layer_2.png-d48d07d14a16b9ae424f0aa828c6c78a.ctex"]
dest_files=["res://.godot/imported/blue_jellyfish_layer_2.png-d48d07d14a16b9ae424f0aa828c6c78a.s3tc.ctex", "res://.godot/imported/blue_jellyfish_layer_2.png-d48d07d14a16b9ae424f0aa828c6c78a.etc2.ctex"]
[params]
compress/mode=0
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
@@ -23,7 +25,7 @@ compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
@@ -3,19 +3,21 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://ds2c07hg5gehr"
path="res://.godot/imported/green_jellyfish.png-a273f442143c4e865bd5def3da194971.ctex"
path.s3tc="res://.godot/imported/green_jellyfish.png-a273f442143c4e865bd5def3da194971.s3tc.ctex"
path.etc2="res://.godot/imported/green_jellyfish.png-a273f442143c4e865bd5def3da194971.etc2.ctex"
metadata={
"vram_texture": false
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
[deps]
source_file="res://assets/minigames/jellyfish/graphic/green_jellyfish.png"
dest_files=["res://.godot/imported/green_jellyfish.png-a273f442143c4e865bd5def3da194971.ctex"]
dest_files=["res://.godot/imported/green_jellyfish.png-a273f442143c4e865bd5def3da194971.s3tc.ctex", "res://.godot/imported/green_jellyfish.png-a273f442143c4e865bd5def3da194971.etc2.ctex"]
[params]
compress/mode=0
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
@@ -23,7 +25,7 @@ compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
@@ -3,19 +3,21 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://ouogv4kicu4d"
path="res://.godot/imported/pink_jellyfish_layer_1.png-80b89901a8bd571eabb362c32ae001a5.ctex"
path.s3tc="res://.godot/imported/pink_jellyfish_layer_1.png-80b89901a8bd571eabb362c32ae001a5.s3tc.ctex"
path.etc2="res://.godot/imported/pink_jellyfish_layer_1.png-80b89901a8bd571eabb362c32ae001a5.etc2.ctex"
metadata={
"vram_texture": false
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
[deps]
source_file="res://assets/minigames/jellyfish/graphic/pink_jellyfish_layer_1.png"
dest_files=["res://.godot/imported/pink_jellyfish_layer_1.png-80b89901a8bd571eabb362c32ae001a5.ctex"]
dest_files=["res://.godot/imported/pink_jellyfish_layer_1.png-80b89901a8bd571eabb362c32ae001a5.s3tc.ctex", "res://.godot/imported/pink_jellyfish_layer_1.png-80b89901a8bd571eabb362c32ae001a5.etc2.ctex"]
[params]
compress/mode=0
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
@@ -23,7 +25,7 @@ compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
@@ -3,19 +3,21 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://cj8mhhve72ff"
path="res://.godot/imported/pink_jellyfish_layer_2.png-230459161919292a3868ae639ba4e1a2.ctex"
path.s3tc="res://.godot/imported/pink_jellyfish_layer_2.png-230459161919292a3868ae639ba4e1a2.s3tc.ctex"
path.etc2="res://.godot/imported/pink_jellyfish_layer_2.png-230459161919292a3868ae639ba4e1a2.etc2.ctex"
metadata={
"vram_texture": false
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
[deps]
source_file="res://assets/minigames/jellyfish/graphic/pink_jellyfish_layer_2.png"
dest_files=["res://.godot/imported/pink_jellyfish_layer_2.png-230459161919292a3868ae639ba4e1a2.ctex"]
dest_files=["res://.godot/imported/pink_jellyfish_layer_2.png-230459161919292a3868ae639ba4e1a2.s3tc.ctex", "res://.godot/imported/pink_jellyfish_layer_2.png-230459161919292a3868ae639ba4e1a2.etc2.ctex"]
[params]
compress/mode=0
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
@@ -23,7 +25,7 @@ compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
@@ -3,19 +3,21 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://dsu5iyecure3"
path="res://.godot/imported/red_jellyfish.png-69f999ee21559d347aea09bc070aed39.ctex"
path.s3tc="res://.godot/imported/red_jellyfish.png-69f999ee21559d347aea09bc070aed39.s3tc.ctex"
path.etc2="res://.godot/imported/red_jellyfish.png-69f999ee21559d347aea09bc070aed39.etc2.ctex"
metadata={
"vram_texture": false
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
[deps]
source_file="res://assets/minigames/jellyfish/graphic/red_jellyfish.png"
dest_files=["res://.godot/imported/red_jellyfish.png-69f999ee21559d347aea09bc070aed39.ctex"]
dest_files=["res://.godot/imported/red_jellyfish.png-69f999ee21559d347aea09bc070aed39.s3tc.ctex", "res://.godot/imported/red_jellyfish.png-69f999ee21559d347aea09bc070aed39.etc2.ctex"]
[params]
compress/mode=0
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
@@ -23,7 +25,7 @@ compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
@@ -3,19 +3,21 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://dnh4dct8pgcj5"
path="res://.godot/imported/bush.png-8b2a230019be154ff388d61416943e26.ctex"
path.s3tc="res://.godot/imported/bush.png-8b2a230019be154ff388d61416943e26.s3tc.ctex"
path.etc2="res://.godot/imported/bush.png-8b2a230019be154ff388d61416943e26.etc2.ctex"
metadata={
"vram_texture": false
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
[deps]
source_file="res://assets/minigames/minigame_ui/graphic/bush.png"
dest_files=["res://.godot/imported/bush.png-8b2a230019be154ff388d61416943e26.ctex"]
dest_files=["res://.godot/imported/bush.png-8b2a230019be154ff388d61416943e26.s3tc.ctex", "res://.godot/imported/bush.png-8b2a230019be154ff388d61416943e26.etc2.ctex"]
[params]
compress/mode=0
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
@@ -23,7 +25,7 @@ compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
@@ -3,19 +3,21 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://bnvx1mujmy3vf"
path="res://.godot/imported/button_back_disabled.png-ef5f120ba83ddd342c450eb50b193e29.ctex"
path.s3tc="res://.godot/imported/button_back_disabled.png-ef5f120ba83ddd342c450eb50b193e29.s3tc.ctex"
path.etc2="res://.godot/imported/button_back_disabled.png-ef5f120ba83ddd342c450eb50b193e29.etc2.ctex"
metadata={
"vram_texture": false
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
[deps]
source_file="res://assets/minigames/minigame_ui/graphic/button_back_disabled.png"
dest_files=["res://.godot/imported/button_back_disabled.png-ef5f120ba83ddd342c450eb50b193e29.ctex"]
dest_files=["res://.godot/imported/button_back_disabled.png-ef5f120ba83ddd342c450eb50b193e29.s3tc.ctex", "res://.godot/imported/button_back_disabled.png-ef5f120ba83ddd342c450eb50b193e29.etc2.ctex"]
[params]
compress/mode=0
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
@@ -23,7 +25,7 @@ compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
@@ -3,19 +3,21 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://dj0ygi5q6kbdw"
path="res://.godot/imported/button_back_normal.png-9bac017a20eb6651d27b39324da71af4.ctex"
path.s3tc="res://.godot/imported/button_back_normal.png-9bac017a20eb6651d27b39324da71af4.s3tc.ctex"
path.etc2="res://.godot/imported/button_back_normal.png-9bac017a20eb6651d27b39324da71af4.etc2.ctex"
metadata={
"vram_texture": false
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
[deps]
source_file="res://assets/minigames/minigame_ui/graphic/button_back_normal.png"
dest_files=["res://.godot/imported/button_back_normal.png-9bac017a20eb6651d27b39324da71af4.ctex"]
dest_files=["res://.godot/imported/button_back_normal.png-9bac017a20eb6651d27b39324da71af4.s3tc.ctex", "res://.godot/imported/button_back_normal.png-9bac017a20eb6651d27b39324da71af4.etc2.ctex"]
[params]
compress/mode=0
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
@@ -23,7 +25,7 @@ compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
@@ -3,19 +3,21 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://gmoc5mxxfqin"
path="res://.godot/imported/button_back_pressed.png-2557e870c079169f2d2bd6a17ce8aeb9.ctex"
path.s3tc="res://.godot/imported/button_back_pressed.png-2557e870c079169f2d2bd6a17ce8aeb9.s3tc.ctex"
path.etc2="res://.godot/imported/button_back_pressed.png-2557e870c079169f2d2bd6a17ce8aeb9.etc2.ctex"
metadata={
"vram_texture": false
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
[deps]
source_file="res://assets/minigames/minigame_ui/graphic/button_back_pressed.png"
dest_files=["res://.godot/imported/button_back_pressed.png-2557e870c079169f2d2bd6a17ce8aeb9.ctex"]
dest_files=["res://.godot/imported/button_back_pressed.png-2557e870c079169f2d2bd6a17ce8aeb9.s3tc.ctex", "res://.godot/imported/button_back_pressed.png-2557e870c079169f2d2bd6a17ce8aeb9.etc2.ctex"]
[params]
compress/mode=0
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
@@ -23,7 +25,7 @@ compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
@@ -3,19 +3,21 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://crnxawhf68po3"
path="res://.godot/imported/button_kalulu_disabled.png-a7a250a3b202651cd2b64b3d6f8c5ce8.ctex"
path.s3tc="res://.godot/imported/button_kalulu_disabled.png-a7a250a3b202651cd2b64b3d6f8c5ce8.s3tc.ctex"
path.etc2="res://.godot/imported/button_kalulu_disabled.png-a7a250a3b202651cd2b64b3d6f8c5ce8.etc2.ctex"
metadata={
"vram_texture": false
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
[deps]
source_file="res://assets/minigames/minigame_ui/graphic/button_kalulu_disabled.png"
dest_files=["res://.godot/imported/button_kalulu_disabled.png-a7a250a3b202651cd2b64b3d6f8c5ce8.ctex"]
dest_files=["res://.godot/imported/button_kalulu_disabled.png-a7a250a3b202651cd2b64b3d6f8c5ce8.s3tc.ctex", "res://.godot/imported/button_kalulu_disabled.png-a7a250a3b202651cd2b64b3d6f8c5ce8.etc2.ctex"]
[params]
compress/mode=0
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
@@ -23,7 +25,7 @@ compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
@@ -3,19 +3,21 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://iw84x6mx8h2g"
path="res://.godot/imported/button_kalulu_normal.png-846af22a97b5cdb1500d496e6a0cbe50.ctex"
path.s3tc="res://.godot/imported/button_kalulu_normal.png-846af22a97b5cdb1500d496e6a0cbe50.s3tc.ctex"
path.etc2="res://.godot/imported/button_kalulu_normal.png-846af22a97b5cdb1500d496e6a0cbe50.etc2.ctex"
metadata={
"vram_texture": false
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
[deps]
source_file="res://assets/minigames/minigame_ui/graphic/button_kalulu_normal.png"
dest_files=["res://.godot/imported/button_kalulu_normal.png-846af22a97b5cdb1500d496e6a0cbe50.ctex"]
dest_files=["res://.godot/imported/button_kalulu_normal.png-846af22a97b5cdb1500d496e6a0cbe50.s3tc.ctex", "res://.godot/imported/button_kalulu_normal.png-846af22a97b5cdb1500d496e6a0cbe50.etc2.ctex"]
[params]
compress/mode=0
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
@@ -23,7 +25,7 @@ compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
@@ -3,19 +3,21 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://ub1dnysbojn8"
path="res://.godot/imported/button_kalulu_pressed.png-a479a09c3b090d686ecc16921d301226.ctex"
path.s3tc="res://.godot/imported/button_kalulu_pressed.png-a479a09c3b090d686ecc16921d301226.s3tc.ctex"
path.etc2="res://.godot/imported/button_kalulu_pressed.png-a479a09c3b090d686ecc16921d301226.etc2.ctex"
metadata={
"vram_texture": false
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
[deps]
source_file="res://assets/minigames/minigame_ui/graphic/button_kalulu_pressed.png"
dest_files=["res://.godot/imported/button_kalulu_pressed.png-a479a09c3b090d686ecc16921d301226.ctex"]
dest_files=["res://.godot/imported/button_kalulu_pressed.png-a479a09c3b090d686ecc16921d301226.s3tc.ctex", "res://.godot/imported/button_kalulu_pressed.png-a479a09c3b090d686ecc16921d301226.etc2.ctex"]
[params]
compress/mode=0
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
@@ -23,7 +25,7 @@ compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
@@ -3,19 +3,21 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://b0luicu7cgho5"
path="res://.godot/imported/button_pause_disabled.png-7dc41ce8181d799fef30178655c4d7dd.ctex"
path.s3tc="res://.godot/imported/button_pause_disabled.png-7dc41ce8181d799fef30178655c4d7dd.s3tc.ctex"
path.etc2="res://.godot/imported/button_pause_disabled.png-7dc41ce8181d799fef30178655c4d7dd.etc2.ctex"
metadata={
"vram_texture": false
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
[deps]
source_file="res://assets/minigames/minigame_ui/graphic/button_pause_disabled.png"
dest_files=["res://.godot/imported/button_pause_disabled.png-7dc41ce8181d799fef30178655c4d7dd.ctex"]
dest_files=["res://.godot/imported/button_pause_disabled.png-7dc41ce8181d799fef30178655c4d7dd.s3tc.ctex", "res://.godot/imported/button_pause_disabled.png-7dc41ce8181d799fef30178655c4d7dd.etc2.ctex"]
[params]
compress/mode=0
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
@@ -23,7 +25,7 @@ compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
@@ -3,19 +3,21 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://bnqgwy3arrm4n"
path="res://.godot/imported/button_pause_normal.png-410dfeb2b24e6f4ccbd503ec48479ceb.ctex"
path.s3tc="res://.godot/imported/button_pause_normal.png-410dfeb2b24e6f4ccbd503ec48479ceb.s3tc.ctex"
path.etc2="res://.godot/imported/button_pause_normal.png-410dfeb2b24e6f4ccbd503ec48479ceb.etc2.ctex"
metadata={
"vram_texture": false
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
[deps]
source_file="res://assets/minigames/minigame_ui/graphic/button_pause_normal.png"
dest_files=["res://.godot/imported/button_pause_normal.png-410dfeb2b24e6f4ccbd503ec48479ceb.ctex"]
dest_files=["res://.godot/imported/button_pause_normal.png-410dfeb2b24e6f4ccbd503ec48479ceb.s3tc.ctex", "res://.godot/imported/button_pause_normal.png-410dfeb2b24e6f4ccbd503ec48479ceb.etc2.ctex"]
[params]
compress/mode=0
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
@@ -23,7 +25,7 @@ compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
@@ -3,19 +3,21 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://bjxt5vglohmk8"
path="res://.godot/imported/button_pause_pressed.png-684213afd797bb0f2a598141b6dce937.ctex"
path.s3tc="res://.godot/imported/button_pause_pressed.png-684213afd797bb0f2a598141b6dce937.s3tc.ctex"
path.etc2="res://.godot/imported/button_pause_pressed.png-684213afd797bb0f2a598141b6dce937.etc2.ctex"
metadata={
"vram_texture": false
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
[deps]
source_file="res://assets/minigames/minigame_ui/graphic/button_pause_pressed.png"
dest_files=["res://.godot/imported/button_pause_pressed.png-684213afd797bb0f2a598141b6dce937.ctex"]
dest_files=["res://.godot/imported/button_pause_pressed.png-684213afd797bb0f2a598141b6dce937.s3tc.ctex", "res://.godot/imported/button_pause_pressed.png-684213afd797bb0f2a598141b6dce937.etc2.ctex"]
[params]
compress/mode=0
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
@@ -23,7 +25,7 @@ compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
@@ -3,19 +3,21 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://53f3lscl7tws"
path="res://.godot/imported/button_shell_disabled.png-916c851823a3bd967079336e8e2b411d.ctex"
path.s3tc="res://.godot/imported/button_shell_disabled.png-916c851823a3bd967079336e8e2b411d.s3tc.ctex"
path.etc2="res://.godot/imported/button_shell_disabled.png-916c851823a3bd967079336e8e2b411d.etc2.ctex"
metadata={
"vram_texture": false
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
[deps]
source_file="res://assets/minigames/minigame_ui/graphic/button_shell_disabled.png"
dest_files=["res://.godot/imported/button_shell_disabled.png-916c851823a3bd967079336e8e2b411d.ctex"]
dest_files=["res://.godot/imported/button_shell_disabled.png-916c851823a3bd967079336e8e2b411d.s3tc.ctex", "res://.godot/imported/button_shell_disabled.png-916c851823a3bd967079336e8e2b411d.etc2.ctex"]
[params]
compress/mode=0
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
@@ -23,7 +25,7 @@ compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
@@ -3,19 +3,21 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://03r3arvu1r2t"
path="res://.godot/imported/button_shell_normal.png-ee922a52468c1fb0d2c5433528fbca78.ctex"
path.s3tc="res://.godot/imported/button_shell_normal.png-ee922a52468c1fb0d2c5433528fbca78.s3tc.ctex"
path.etc2="res://.godot/imported/button_shell_normal.png-ee922a52468c1fb0d2c5433528fbca78.etc2.ctex"
metadata={
"vram_texture": false
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
[deps]
source_file="res://assets/minigames/minigame_ui/graphic/button_shell_normal.png"
dest_files=["res://.godot/imported/button_shell_normal.png-ee922a52468c1fb0d2c5433528fbca78.ctex"]
dest_files=["res://.godot/imported/button_shell_normal.png-ee922a52468c1fb0d2c5433528fbca78.s3tc.ctex", "res://.godot/imported/button_shell_normal.png-ee922a52468c1fb0d2c5433528fbca78.etc2.ctex"]
[params]
compress/mode=0
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
@@ -23,7 +25,7 @@ compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
@@ -3,19 +3,21 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://clrnqn0fqjx3q"
path="res://.godot/imported/button_shell_pressed.png-03f6dfe49ed1c9a8dfda274a18369711.ctex"
path.s3tc="res://.godot/imported/button_shell_pressed.png-03f6dfe49ed1c9a8dfda274a18369711.s3tc.ctex"
path.etc2="res://.godot/imported/button_shell_pressed.png-03f6dfe49ed1c9a8dfda274a18369711.etc2.ctex"
metadata={
"vram_texture": false
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
[deps]
source_file="res://assets/minigames/minigame_ui/graphic/button_shell_pressed.png"
dest_files=["res://.godot/imported/button_shell_pressed.png-03f6dfe49ed1c9a8dfda274a18369711.ctex"]
dest_files=["res://.godot/imported/button_shell_pressed.png-03f6dfe49ed1c9a8dfda274a18369711.s3tc.ctex", "res://.godot/imported/button_shell_pressed.png-03f6dfe49ed1c9a8dfda274a18369711.etc2.ctex"]
[params]
compress/mode=0
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
@@ -23,7 +25,7 @@ compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
@@ -3,19 +3,21 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://b6b8kb5l3yh04"
path="res://.godot/imported/large_flower_body.png-e4cc5c7240bb0cdd8e8f6e9eb5e337f1.ctex"
path.s3tc="res://.godot/imported/large_flower_body.png-e4cc5c7240bb0cdd8e8f6e9eb5e337f1.s3tc.ctex"
path.etc2="res://.godot/imported/large_flower_body.png-e4cc5c7240bb0cdd8e8f6e9eb5e337f1.etc2.ctex"
metadata={
"vram_texture": false
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
[deps]
source_file="res://assets/minigames/minigame_ui/graphic/large_flower_body.png"
dest_files=["res://.godot/imported/large_flower_body.png-e4cc5c7240bb0cdd8e8f6e9eb5e337f1.ctex"]
dest_files=["res://.godot/imported/large_flower_body.png-e4cc5c7240bb0cdd8e8f6e9eb5e337f1.s3tc.ctex", "res://.godot/imported/large_flower_body.png-e4cc5c7240bb0cdd8e8f6e9eb5e337f1.etc2.ctex"]
[params]
compress/mode=0
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
@@ -23,7 +25,7 @@ compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
@@ -3,19 +3,21 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://vcfpmwst262s"
path="res://.godot/imported/popin_background.png-1eed939191a8e691f6867e928c0c1e47.ctex"
path.s3tc="res://.godot/imported/popin_background.png-1eed939191a8e691f6867e928c0c1e47.s3tc.ctex"
path.etc2="res://.godot/imported/popin_background.png-1eed939191a8e691f6867e928c0c1e47.etc2.ctex"
metadata={
"vram_texture": false
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
[deps]
source_file="res://assets/minigames/minigame_ui/graphic/popin_background.png"
dest_files=["res://.godot/imported/popin_background.png-1eed939191a8e691f6867e928c0c1e47.ctex"]
dest_files=["res://.godot/imported/popin_background.png-1eed939191a8e691f6867e928c0c1e47.s3tc.ctex", "res://.godot/imported/popin_background.png-1eed939191a8e691f6867e928c0c1e47.etc2.ctex"]
[params]
compress/mode=0
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
@@ -23,7 +25,7 @@ compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
@@ -3,19 +3,21 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://f2ys2fy1il2k"
path="res://.godot/imported/popin_foreground.png-1501a93c85b4af7b4b5f6b0cc86dd3c8.ctex"
path.s3tc="res://.godot/imported/popin_foreground.png-1501a93c85b4af7b4b5f6b0cc86dd3c8.s3tc.ctex"
path.etc2="res://.godot/imported/popin_foreground.png-1501a93c85b4af7b4b5f6b0cc86dd3c8.etc2.ctex"
metadata={
"vram_texture": false
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
[deps]
source_file="res://assets/minigames/minigame_ui/graphic/popin_foreground.png"
dest_files=["res://.godot/imported/popin_foreground.png-1501a93c85b4af7b4b5f6b0cc86dd3c8.ctex"]
dest_files=["res://.godot/imported/popin_foreground.png-1501a93c85b4af7b4b5f6b0cc86dd3c8.s3tc.ctex", "res://.godot/imported/popin_foreground.png-1501a93c85b4af7b4b5f6b0cc86dd3c8.etc2.ctex"]
[params]
compress/mode=0
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
@@ -23,7 +25,7 @@ compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
@@ -3,19 +3,21 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://c34sgkbvr3h8q"
path="res://.godot/imported/primary_text_box.png-e6e7d0f2e6a28bafc3bf983ee5c88924.ctex"
path.s3tc="res://.godot/imported/primary_text_box.png-e6e7d0f2e6a28bafc3bf983ee5c88924.s3tc.ctex"
path.etc2="res://.godot/imported/primary_text_box.png-e6e7d0f2e6a28bafc3bf983ee5c88924.etc2.ctex"
metadata={
"vram_texture": false
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
[deps]
source_file="res://assets/minigames/minigame_ui/graphic/primary_text_box.png"
dest_files=["res://.godot/imported/primary_text_box.png-e6e7d0f2e6a28bafc3bf983ee5c88924.ctex"]
dest_files=["res://.godot/imported/primary_text_box.png-e6e7d0f2e6a28bafc3bf983ee5c88924.s3tc.ctex", "res://.godot/imported/primary_text_box.png-e6e7d0f2e6a28bafc3bf983ee5c88924.etc2.ctex"]
[params]
compress/mode=0
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
@@ -23,7 +25,7 @@ compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
@@ -3,19 +3,21 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://bbtr0cyiapi3g"
path="res://.godot/imported/primary_text_box_outline.png-5b726d4cac88e8411d188e6023d8d5da.ctex"
path.s3tc="res://.godot/imported/primary_text_box_outline.png-5b726d4cac88e8411d188e6023d8d5da.s3tc.ctex"
path.etc2="res://.godot/imported/primary_text_box_outline.png-5b726d4cac88e8411d188e6023d8d5da.etc2.ctex"
metadata={
"vram_texture": false
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
[deps]
source_file="res://assets/minigames/minigame_ui/graphic/primary_text_box_outline.png"
dest_files=["res://.godot/imported/primary_text_box_outline.png-5b726d4cac88e8411d188e6023d8d5da.ctex"]
dest_files=["res://.godot/imported/primary_text_box_outline.png-5b726d4cac88e8411d188e6023d8d5da.s3tc.ctex", "res://.godot/imported/primary_text_box_outline.png-5b726d4cac88e8411d188e6023d8d5da.etc2.ctex"]
[params]
compress/mode=0
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
@@ -23,7 +25,7 @@ compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
@@ -3,19 +3,21 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://babk0f7ayvar1"
path="res://.godot/imported/title.png-7e5193721310b57b3ffb1167ccba43df.ctex"
path.s3tc="res://.godot/imported/title.png-7e5193721310b57b3ffb1167ccba43df.s3tc.ctex"
path.etc2="res://.godot/imported/title.png-7e5193721310b57b3ffb1167ccba43df.etc2.ctex"
metadata={
"vram_texture": false
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
[deps]
source_file="res://assets/minigames/minigame_ui/graphic/title.png"
dest_files=["res://.godot/imported/title.png-7e5193721310b57b3ffb1167ccba43df.ctex"]
dest_files=["res://.godot/imported/title.png-7e5193721310b57b3ffb1167ccba43df.s3tc.ctex", "res://.godot/imported/title.png-7e5193721310b57b3ffb1167ccba43df.etc2.ctex"]
[params]
compress/mode=0
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
@@ -23,7 +25,7 @@ compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
@@ -3,19 +3,21 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://demg0gbj4lwic"
path="res://.godot/imported/background.png-3e0c4215e692346e0eaa221c7e37d87a.ctex"
path.s3tc="res://.godot/imported/background.png-3e0c4215e692346e0eaa221c7e37d87a.s3tc.ctex"
path.etc2="res://.godot/imported/background.png-3e0c4215e692346e0eaa221c7e37d87a.etc2.ctex"
metadata={
"vram_texture": false
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
[deps]
source_file="res://assets/minigames/monkeys/graphic/background.png"
dest_files=["res://.godot/imported/background.png-3e0c4215e692346e0eaa221c7e37d87a.ctex"]
dest_files=["res://.godot/imported/background.png-3e0c4215e692346e0eaa221c7e37d87a.s3tc.ctex", "res://.godot/imported/background.png-3e0c4215e692346e0eaa221c7e37d87a.etc2.ctex"]
[params]
compress/mode=0
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
@@ -23,7 +25,7 @@ compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
@@ -3,19 +3,21 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://b5dpemo34ts5s"
path="res://.godot/imported/background_shadows.png-abf4b46cbe05c69b23d0c391b191de22.ctex"
path.s3tc="res://.godot/imported/background_shadows.png-abf4b46cbe05c69b23d0c391b191de22.s3tc.ctex"
path.etc2="res://.godot/imported/background_shadows.png-abf4b46cbe05c69b23d0c391b191de22.etc2.ctex"
metadata={
"vram_texture": false
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
[deps]
source_file="res://assets/minigames/monkeys/graphic/background_shadows.png"
dest_files=["res://.godot/imported/background_shadows.png-abf4b46cbe05c69b23d0c391b191de22.ctex"]
dest_files=["res://.godot/imported/background_shadows.png-abf4b46cbe05c69b23d0c391b191de22.s3tc.ctex", "res://.godot/imported/background_shadows.png-abf4b46cbe05c69b23d0c391b191de22.etc2.ctex"]
[params]
compress/mode=0
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
@@ -23,7 +25,7 @@ compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
@@ -3,19 +3,21 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://blejqny5syems"
path="res://.godot/imported/billboard.png-744336044fedeb85a9d8220cf978f225.ctex"
path.s3tc="res://.godot/imported/billboard.png-744336044fedeb85a9d8220cf978f225.s3tc.ctex"
path.etc2="res://.godot/imported/billboard.png-744336044fedeb85a9d8220cf978f225.etc2.ctex"
metadata={
"vram_texture": false
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
[deps]
source_file="res://assets/minigames/monkeys/graphic/billboard.png"
dest_files=["res://.godot/imported/billboard.png-744336044fedeb85a9d8220cf978f225.ctex"]
dest_files=["res://.godot/imported/billboard.png-744336044fedeb85a9d8220cf978f225.s3tc.ctex", "res://.godot/imported/billboard.png-744336044fedeb85a9d8220cf978f225.etc2.ctex"]
[params]
compress/mode=0
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
@@ -23,7 +25,7 @@ compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
@@ -3,19 +3,21 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://u2x8lg54e1g"
path="res://.godot/imported/caterpillar.png-c28d405f3f7d508211c0ecbc27d2cc5c.ctex"
path.s3tc="res://.godot/imported/caterpillar.png-c28d405f3f7d508211c0ecbc27d2cc5c.s3tc.ctex"
path.etc2="res://.godot/imported/caterpillar.png-c28d405f3f7d508211c0ecbc27d2cc5c.etc2.ctex"
metadata={
"vram_texture": false
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
[deps]
source_file="res://assets/minigames/monkeys/graphic/caterpillar.png"
dest_files=["res://.godot/imported/caterpillar.png-c28d405f3f7d508211c0ecbc27d2cc5c.ctex"]
dest_files=["res://.godot/imported/caterpillar.png-c28d405f3f7d508211c0ecbc27d2cc5c.s3tc.ctex", "res://.godot/imported/caterpillar.png-c28d405f3f7d508211c0ecbc27d2cc5c.etc2.ctex"]
[params]
compress/mode=0
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
@@ -23,7 +25,7 @@ compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
@@ -3,19 +3,21 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://b6k16tfsm2p4u"
path="res://.godot/imported/ground.png-15ba339f1b6209172fdb711379739ef5.ctex"
path.s3tc="res://.godot/imported/ground.png-15ba339f1b6209172fdb711379739ef5.s3tc.ctex"
path.etc2="res://.godot/imported/ground.png-15ba339f1b6209172fdb711379739ef5.etc2.ctex"
metadata={
"vram_texture": false
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
[deps]
source_file="res://assets/minigames/monkeys/graphic/ground.png"
dest_files=["res://.godot/imported/ground.png-15ba339f1b6209172fdb711379739ef5.ctex"]
dest_files=["res://.godot/imported/ground.png-15ba339f1b6209172fdb711379739ef5.s3tc.ctex", "res://.godot/imported/ground.png-15ba339f1b6209172fdb711379739ef5.etc2.ctex"]
[params]
compress/mode=0
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
@@ -23,7 +25,7 @@ compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
@@ -3,19 +3,21 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://boxmlmbplr12i"
path="res://.godot/imported/king_spritesheet.png-46e752a76092c6981ba363d5eca9c3e2.ctex"
path.s3tc="res://.godot/imported/king_spritesheet.png-46e752a76092c6981ba363d5eca9c3e2.s3tc.ctex"
path.etc2="res://.godot/imported/king_spritesheet.png-46e752a76092c6981ba363d5eca9c3e2.etc2.ctex"
metadata={
"vram_texture": false
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
[deps]
source_file="res://assets/minigames/monkeys/graphic/king_spritesheet.png"
dest_files=["res://.godot/imported/king_spritesheet.png-46e752a76092c6981ba363d5eca9c3e2.ctex"]
dest_files=["res://.godot/imported/king_spritesheet.png-46e752a76092c6981ba363d5eca9c3e2.s3tc.ctex", "res://.godot/imported/king_spritesheet.png-46e752a76092c6981ba363d5eca9c3e2.etc2.ctex"]
[params]
compress/mode=0
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
@@ -23,7 +25,7 @@ compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
@@ -3,19 +3,21 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://d0jobqj4fvrwy"
path="res://.godot/imported/monkey_spritesheet.png-79c879ef4807d3aa5e28bf955b5a3746.ctex"
path.s3tc="res://.godot/imported/monkey_spritesheet.png-79c879ef4807d3aa5e28bf955b5a3746.s3tc.ctex"
path.etc2="res://.godot/imported/monkey_spritesheet.png-79c879ef4807d3aa5e28bf955b5a3746.etc2.ctex"
metadata={
"vram_texture": false
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
[deps]
source_file="res://assets/minigames/monkeys/graphic/monkey_spritesheet.png"
dest_files=["res://.godot/imported/monkey_spritesheet.png-79c879ef4807d3aa5e28bf955b5a3746.ctex"]
dest_files=["res://.godot/imported/monkey_spritesheet.png-79c879ef4807d3aa5e28bf955b5a3746.s3tc.ctex", "res://.godot/imported/monkey_spritesheet.png-79c879ef4807d3aa5e28bf955b5a3746.etc2.ctex"]
[params]
compress/mode=0
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
@@ -23,7 +25,7 @@ compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
@@ -3,19 +3,21 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://eor7gaddgj5d"
path="res://.godot/imported/palmtree_01.png-d2c9bb3d1571ad618dba3e80ef4d0456.ctex"
path.s3tc="res://.godot/imported/palmtree_01.png-d2c9bb3d1571ad618dba3e80ef4d0456.s3tc.ctex"
path.etc2="res://.godot/imported/palmtree_01.png-d2c9bb3d1571ad618dba3e80ef4d0456.etc2.ctex"
metadata={
"vram_texture": false
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
[deps]
source_file="res://assets/minigames/monkeys/graphic/palmtree_01.png"
dest_files=["res://.godot/imported/palmtree_01.png-d2c9bb3d1571ad618dba3e80ef4d0456.ctex"]
dest_files=["res://.godot/imported/palmtree_01.png-d2c9bb3d1571ad618dba3e80ef4d0456.s3tc.ctex", "res://.godot/imported/palmtree_01.png-d2c9bb3d1571ad618dba3e80ef4d0456.etc2.ctex"]
[params]
compress/mode=0
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
@@ -23,7 +25,7 @@ compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
@@ -3,19 +3,21 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://fex5yvybinsx"
path="res://.godot/imported/palmtree_02.png-0180af1631e93bd44dcded1d875a89be.ctex"
path.s3tc="res://.godot/imported/palmtree_02.png-0180af1631e93bd44dcded1d875a89be.s3tc.ctex"
path.etc2="res://.godot/imported/palmtree_02.png-0180af1631e93bd44dcded1d875a89be.etc2.ctex"
metadata={
"vram_texture": false
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
[deps]
source_file="res://assets/minigames/monkeys/graphic/palmtree_02.png"
dest_files=["res://.godot/imported/palmtree_02.png-0180af1631e93bd44dcded1d875a89be.ctex"]
dest_files=["res://.godot/imported/palmtree_02.png-0180af1631e93bd44dcded1d875a89be.s3tc.ctex", "res://.godot/imported/palmtree_02.png-0180af1631e93bd44dcded1d875a89be.etc2.ctex"]
[params]
compress/mode=0
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
@@ -23,7 +25,7 @@ compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
@@ -3,19 +3,21 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://cc01gd1hm6hc3"
path="res://.godot/imported/background_1.png-8ac3644edd63999756849ff3e759d11b.ctex"
path.s3tc="res://.godot/imported/background_1.png-8ac3644edd63999756849ff3e759d11b.s3tc.ctex"
path.etc2="res://.godot/imported/background_1.png-8ac3644edd63999756849ff3e759d11b.etc2.ctex"
metadata={
"vram_texture": false
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
[deps]
source_file="res://assets/minigames/parakeets/graphic/background_1.png"
dest_files=["res://.godot/imported/background_1.png-8ac3644edd63999756849ff3e759d11b.ctex"]
dest_files=["res://.godot/imported/background_1.png-8ac3644edd63999756849ff3e759d11b.s3tc.ctex", "res://.godot/imported/background_1.png-8ac3644edd63999756849ff3e759d11b.etc2.ctex"]
[params]
compress/mode=0
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
@@ -23,7 +25,7 @@ compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
@@ -3,19 +3,21 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://pj0mlw24jayt"
path="res://.godot/imported/background_2.png-347fda916494b7c02674be20cbfaaae0.ctex"
path.s3tc="res://.godot/imported/background_2.png-347fda916494b7c02674be20cbfaaae0.s3tc.ctex"
path.etc2="res://.godot/imported/background_2.png-347fda916494b7c02674be20cbfaaae0.etc2.ctex"
metadata={
"vram_texture": false
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
[deps]
source_file="res://assets/minigames/parakeets/graphic/background_2.png"
dest_files=["res://.godot/imported/background_2.png-347fda916494b7c02674be20cbfaaae0.ctex"]
dest_files=["res://.godot/imported/background_2.png-347fda916494b7c02674be20cbfaaae0.s3tc.ctex", "res://.godot/imported/background_2.png-347fda916494b7c02674be20cbfaaae0.etc2.ctex"]
[params]
compress/mode=0
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
@@ -23,7 +25,7 @@ compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
@@ -3,19 +3,21 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://cs16kbsvnsltg"
path="res://.godot/imported/background_3.png-63a8c14a4cb795cb6e87dd2e5ae19ca9.ctex"
path.s3tc="res://.godot/imported/background_3.png-63a8c14a4cb795cb6e87dd2e5ae19ca9.s3tc.ctex"
path.etc2="res://.godot/imported/background_3.png-63a8c14a4cb795cb6e87dd2e5ae19ca9.etc2.ctex"
metadata={
"vram_texture": false
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
[deps]
source_file="res://assets/minigames/parakeets/graphic/background_3.png"
dest_files=["res://.godot/imported/background_3.png-63a8c14a4cb795cb6e87dd2e5ae19ca9.ctex"]
dest_files=["res://.godot/imported/background_3.png-63a8c14a4cb795cb6e87dd2e5ae19ca9.s3tc.ctex", "res://.godot/imported/background_3.png-63a8c14a4cb795cb6e87dd2e5ae19ca9.etc2.ctex"]
[params]
compress/mode=0
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
@@ -23,7 +25,7 @@ compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
@@ -3,19 +3,21 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://xo0vj3ubvidu"
path="res://.godot/imported/green_parakeet_spritesheet.png-1c24cd90a1fc5e0c07128873d7f7644c.ctex"
path.s3tc="res://.godot/imported/green_parakeet_spritesheet.png-1c24cd90a1fc5e0c07128873d7f7644c.s3tc.ctex"
path.etc2="res://.godot/imported/green_parakeet_spritesheet.png-1c24cd90a1fc5e0c07128873d7f7644c.etc2.ctex"
metadata={
"vram_texture": false
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
[deps]
source_file="res://assets/minigames/parakeets/graphic/green_parakeet_spritesheet.png"
dest_files=["res://.godot/imported/green_parakeet_spritesheet.png-1c24cd90a1fc5e0c07128873d7f7644c.ctex"]
dest_files=["res://.godot/imported/green_parakeet_spritesheet.png-1c24cd90a1fc5e0c07128873d7f7644c.s3tc.ctex", "res://.godot/imported/green_parakeet_spritesheet.png-1c24cd90a1fc5e0c07128873d7f7644c.etc2.ctex"]
[params]
compress/mode=0
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
@@ -23,7 +25,7 @@ compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
@@ -3,19 +3,21 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://ca2jljrk2wnjt"
path="res://.godot/imported/nest.png-d6526be76febf21ea30b47b12ae7e29f.ctex"
path.s3tc="res://.godot/imported/nest.png-d6526be76febf21ea30b47b12ae7e29f.s3tc.ctex"
path.etc2="res://.godot/imported/nest.png-d6526be76febf21ea30b47b12ae7e29f.etc2.ctex"
metadata={
"vram_texture": false
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
[deps]
source_file="res://assets/minigames/parakeets/graphic/nest.png"
dest_files=["res://.godot/imported/nest.png-d6526be76febf21ea30b47b12ae7e29f.ctex"]
dest_files=["res://.godot/imported/nest.png-d6526be76febf21ea30b47b12ae7e29f.s3tc.ctex", "res://.godot/imported/nest.png-d6526be76febf21ea30b47b12ae7e29f.etc2.ctex"]
[params]
compress/mode=0
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
@@ -23,7 +25,7 @@ compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
@@ -3,19 +3,21 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://ct4ags1dnh17v"
path="res://.godot/imported/red_parakeet_spritesheet.png-6348e73c3282a1fcc2c4ef6b7ae32a62.ctex"
path.s3tc="res://.godot/imported/red_parakeet_spritesheet.png-6348e73c3282a1fcc2c4ef6b7ae32a62.s3tc.ctex"
path.etc2="res://.godot/imported/red_parakeet_spritesheet.png-6348e73c3282a1fcc2c4ef6b7ae32a62.etc2.ctex"
metadata={
"vram_texture": false
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
[deps]
source_file="res://assets/minigames/parakeets/graphic/red_parakeet_spritesheet.png"
dest_files=["res://.godot/imported/red_parakeet_spritesheet.png-6348e73c3282a1fcc2c4ef6b7ae32a62.ctex"]
dest_files=["res://.godot/imported/red_parakeet_spritesheet.png-6348e73c3282a1fcc2c4ef6b7ae32a62.s3tc.ctex", "res://.godot/imported/red_parakeet_spritesheet.png-6348e73c3282a1fcc2c4ef6b7ae32a62.etc2.ctex"]
[params]
compress/mode=0
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
@@ -23,7 +25,7 @@ compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""

Some files were not shown because too many files have changed in this diff Show More