From 27b5d5115a8977004df31befffc6690fc62ec1ff Mon Sep 17 00:00:00 2001 From: Florian Date: Fri, 19 Sep 2025 00:18:49 +0200 Subject: [PATCH 1/2] Introduced maximum build height --- main.tscn | 2 +- project.godot | 2 +- ui/main_menu/main_menu.tscn | 2 +- world/building_generator.gd | 21 +++++++++++++-------- world/grid.gd | 7 +++++++ 5 files changed, 23 insertions(+), 11 deletions(-) diff --git a/main.tscn b/main.tscn index f218caf..e33b62d 100644 --- a/main.tscn +++ b/main.tscn @@ -32,7 +32,7 @@ zoom = Vector2(0.12, 0.12) [node name="Building Generator" type="Node" parent="."] script = ExtResource("4_1bvp3") -initial_buildings = 100 +initial_buildings = 10 [node name="Timer" type="Timer" parent="Building Generator"] wait_time = 3.0 diff --git a/project.godot b/project.godot index 74ca773..4c4c8a9 100644 --- a/project.godot +++ b/project.godot @@ -11,7 +11,7 @@ config_version=5 [application] config/name="The Dark Side of Earth" -run/main_scene="uid://cxo6bq26huau7" +run/main_scene="uid://dpkr8yoobtej6" config/features=PackedStringArray("4.5", "Forward Plus") config/icon="res://icon.svg" diff --git a/ui/main_menu/main_menu.tscn b/ui/main_menu/main_menu.tscn index c707474..3916f82 100644 --- a/ui/main_menu/main_menu.tscn +++ b/ui/main_menu/main_menu.tscn @@ -38,7 +38,7 @@ zoom = Vector2(0.12, 0.12) [node name="Building Generator" type="Node" parent="."] script = ExtResource("2_d3a7t") -initial_buildings = 250 +initial_buildings = 200 initial_spawn_protection = false [node name="Timer" type="Timer" parent="Building Generator"] diff --git a/world/building_generator.gd b/world/building_generator.gd index 78813ae..358191e 100644 --- a/world/building_generator.gd +++ b/world/building_generator.gd @@ -3,6 +3,7 @@ class_name BuildingGenerator extends Node @onready var grid : Grid = %Earth.get_grid() @export var initial_buildings : int; @export var initial_spawn_protection = true +@export var spawn_attempts = 5 func random_oppostite_collumn() -> int: var playerpos = %Player.position @@ -19,16 +20,20 @@ func random_collumn() -> int: func _ready(): for i in range(initial_buildings): - var collumn = random_collumn() - if initial_spawn_protection and 43 <= collumn and collumn <= 49: - continue - var building = randomize_building() - grid.add_building_to_collumn(building, collumn) + for j in range(spawn_attempts): + var collumn = random_collumn() + if initial_spawn_protection and 43 <= collumn and collumn <= 49: + continue + var building = randomize_building() + if grid.add_building_to_collumn(building, collumn): + break func _on_timer_timeout() -> void: - var collumn = random_oppostite_collumn() - var building : Building = randomize_building() - grid.add_building_to_collumn(building, collumn) + for i in range(spawn_attempts): + var collumn = random_oppostite_collumn() + var building : Building = randomize_building() + if grid.add_building_to_collumn(building, collumn): + break func randomize_building() -> Building: var index = randi() % grid.packed_buildings.size() diff --git a/world/grid.gd b/world/grid.gd index bcdd578..cd12343 100644 --- a/world/grid.gd +++ b/world/grid.gd @@ -6,6 +6,7 @@ class_name Grid extends Node2D @export var debug : bool @export var packed_buildings : Array[PackedScene] +@export var max_build_height = 6 var buildings : Array[Building] = [] @@ -30,8 +31,14 @@ func add_building_to_collumn(building : Building, collumn : int): for other in buildings: if other.overlaps(building): spot_clear = false + + if building.location.y + building.dimension.y > max_build_height: + building.free() + return false + add_child(building) + return true # for testing #func _ready() -> void: From 07c875c249c1aede9e57fc448498402767c8b191 Mon Sep 17 00:00:00 2001 From: Florian Date: Fri, 19 Sep 2025 00:20:27 +0200 Subject: [PATCH 2/2] spam --- Witchwoode-Regular.ttf.import | 1 + buildings/Building 1x2 fixed.png.import | 6 ++++++ buildings/Building 2x1 downside.png.import | 6 ++++++ buildings/Building 2x1 fixed.png.import | 6 ++++++ enemies/boss/bubble.png.import | 6 ++++++ enemies/ghost/ghost animation/Ghost 0.png.import | 6 ++++++ enemies/ghost/ghost animation/Ghost 1.png.import | 6 ++++++ enemies/ghost/ghost animation/Ghost 2.png.import | 6 ++++++ enemies/ghost/ghost animation/Ghost 3.png.import | 6 ++++++ enemies/ghost/ghost animation/Ghost 4.png.import | 6 ++++++ enemies/ghost/ghost animation/Ghost 5.png.import | 6 ++++++ player/Heart Grey.png.import | 6 ++++++ player/Heart.png.import | 6 ++++++ player/Heart_cut Grey.png.import | 6 ++++++ player/Heart_cut.png.import | 6 ++++++ player/Player_Walk/Walk 1.png.import | 6 ++++++ player/Player_Walk/Walk 2.png.import | 6 ++++++ player/Player_Walk/Walk 3.png.import | 6 ++++++ player/Player_Walk/Walk 4.png.import | 6 ++++++ player/Player_Walk/Walk 5.png.import | 6 ++++++ player/Player_Walk/Walk 6.png.import | 6 ++++++ player/attack_animation/Attack Animation 0.png.import | 6 ++++++ player/attack_animation/Attack Animation 1.png.import | 6 ++++++ player/attack_animation/Attack Animation 2.png.import | 6 ++++++ player/attack_animation/Attack Animation 3.png.import | 6 ++++++ player/double_jump/Double Jump 0.png.import | 6 ++++++ player/double_jump/Double Jump 1.png.import | 6 ++++++ player/double_jump/Double Jump 2.png.import | 6 ++++++ player/double_jump/Double Jump 3.png.import | 6 ++++++ player/double_jump/Double Jump 4.png.import | 6 ++++++ traps/Morning Star.png.import | 6 ++++++ water/Warning_particle_emmission_shape.png.import | 6 ++++++ .../Background Prototype Layer 1.png.import | 6 ++++++ .../Background Prototype Layer 2.png.import | 6 ++++++ .../Background Prototype Layer 3.png.import | 6 ++++++ .../Background Prototype Layer 4.png.import | 6 ++++++ world/Background Prototype/Background prototype.png.import | 6 ++++++ 37 files changed, 217 insertions(+) diff --git a/Witchwoode-Regular.ttf.import b/Witchwoode-Regular.ttf.import index 05fa4fe..d9ba6cb 100644 --- a/Witchwoode-Regular.ttf.import +++ b/Witchwoode-Regular.ttf.import @@ -21,6 +21,7 @@ msdf_pixel_range=8 msdf_size=48 allow_system_fallback=true force_autohinter=false +modulate_color_glyphs=false hinting=1 subpixel_positioning=4 keep_rounding_remainders=true diff --git a/buildings/Building 1x2 fixed.png.import b/buildings/Building 1x2 fixed.png.import index 0ac93ca..39a81c9 100644 --- a/buildings/Building 1x2 fixed.png.import +++ b/buildings/Building 1x2 fixed.png.import @@ -18,6 +18,8 @@ dest_files=["res://.godot/imported/Building 1x2 fixed.png-e90afc0d25a8919ada5700 compress/mode=0 compress/high_quality=false compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 compress/hdr_compression=1 compress/normal_map=0 compress/channel_pack=0 @@ -25,6 +27,10 @@ mipmaps/generate=false mipmaps/limit=-1 roughness/mode=0 roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 process/fix_alpha_border=true process/premult_alpha=false process/normal_map_invert_y=false diff --git a/buildings/Building 2x1 downside.png.import b/buildings/Building 2x1 downside.png.import index 52d9ce5..0e57d53 100644 --- a/buildings/Building 2x1 downside.png.import +++ b/buildings/Building 2x1 downside.png.import @@ -18,6 +18,8 @@ dest_files=["res://.godot/imported/Building 2x1 downside.png-4b432eb4152bab7dd59 compress/mode=0 compress/high_quality=false compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 compress/hdr_compression=1 compress/normal_map=0 compress/channel_pack=0 @@ -25,6 +27,10 @@ mipmaps/generate=false mipmaps/limit=-1 roughness/mode=0 roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 process/fix_alpha_border=true process/premult_alpha=false process/normal_map_invert_y=false diff --git a/buildings/Building 2x1 fixed.png.import b/buildings/Building 2x1 fixed.png.import index a78eae3..e7fdbe6 100644 --- a/buildings/Building 2x1 fixed.png.import +++ b/buildings/Building 2x1 fixed.png.import @@ -18,6 +18,8 @@ dest_files=["res://.godot/imported/Building 2x1 fixed.png-b02748fa52aebae62f987c compress/mode=0 compress/high_quality=false compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 compress/hdr_compression=1 compress/normal_map=0 compress/channel_pack=0 @@ -25,6 +27,10 @@ mipmaps/generate=false mipmaps/limit=-1 roughness/mode=0 roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 process/fix_alpha_border=true process/premult_alpha=false process/normal_map_invert_y=false diff --git a/enemies/boss/bubble.png.import b/enemies/boss/bubble.png.import index a186880..d45843f 100644 --- a/enemies/boss/bubble.png.import +++ b/enemies/boss/bubble.png.import @@ -18,6 +18,8 @@ dest_files=["res://.godot/imported/bubble.png-0c7e5ecd706b98b1fc89ca0c332b8765.c compress/mode=0 compress/high_quality=false compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 compress/hdr_compression=1 compress/normal_map=0 compress/channel_pack=0 @@ -25,6 +27,10 @@ mipmaps/generate=false mipmaps/limit=-1 roughness/mode=0 roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 process/fix_alpha_border=true process/premult_alpha=false process/normal_map_invert_y=false diff --git a/enemies/ghost/ghost animation/Ghost 0.png.import b/enemies/ghost/ghost animation/Ghost 0.png.import index e686ef7..6333471 100644 --- a/enemies/ghost/ghost animation/Ghost 0.png.import +++ b/enemies/ghost/ghost animation/Ghost 0.png.import @@ -18,6 +18,8 @@ dest_files=["res://.godot/imported/Ghost 0.png-8d937675f5ab76800df31b7061627c3a. compress/mode=0 compress/high_quality=false compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 compress/hdr_compression=1 compress/normal_map=0 compress/channel_pack=0 @@ -25,6 +27,10 @@ mipmaps/generate=false mipmaps/limit=-1 roughness/mode=0 roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 process/fix_alpha_border=true process/premult_alpha=false process/normal_map_invert_y=false diff --git a/enemies/ghost/ghost animation/Ghost 1.png.import b/enemies/ghost/ghost animation/Ghost 1.png.import index d3fa17a..97aa8f4 100644 --- a/enemies/ghost/ghost animation/Ghost 1.png.import +++ b/enemies/ghost/ghost animation/Ghost 1.png.import @@ -18,6 +18,8 @@ dest_files=["res://.godot/imported/Ghost 1.png-995481976799d0dbea8151c0e6c4911f. compress/mode=0 compress/high_quality=false compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 compress/hdr_compression=1 compress/normal_map=0 compress/channel_pack=0 @@ -25,6 +27,10 @@ mipmaps/generate=false mipmaps/limit=-1 roughness/mode=0 roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 process/fix_alpha_border=true process/premult_alpha=false process/normal_map_invert_y=false diff --git a/enemies/ghost/ghost animation/Ghost 2.png.import b/enemies/ghost/ghost animation/Ghost 2.png.import index a248efe..392343c 100644 --- a/enemies/ghost/ghost animation/Ghost 2.png.import +++ b/enemies/ghost/ghost animation/Ghost 2.png.import @@ -18,6 +18,8 @@ dest_files=["res://.godot/imported/Ghost 2.png-e2649e9d2a684ce9a917daf95b933483. compress/mode=0 compress/high_quality=false compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 compress/hdr_compression=1 compress/normal_map=0 compress/channel_pack=0 @@ -25,6 +27,10 @@ mipmaps/generate=false mipmaps/limit=-1 roughness/mode=0 roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 process/fix_alpha_border=true process/premult_alpha=false process/normal_map_invert_y=false diff --git a/enemies/ghost/ghost animation/Ghost 3.png.import b/enemies/ghost/ghost animation/Ghost 3.png.import index d15be45..7a2e5b5 100644 --- a/enemies/ghost/ghost animation/Ghost 3.png.import +++ b/enemies/ghost/ghost animation/Ghost 3.png.import @@ -18,6 +18,8 @@ dest_files=["res://.godot/imported/Ghost 3.png-06caad1192823e1dd881b7bd273e8aff. compress/mode=0 compress/high_quality=false compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 compress/hdr_compression=1 compress/normal_map=0 compress/channel_pack=0 @@ -25,6 +27,10 @@ mipmaps/generate=false mipmaps/limit=-1 roughness/mode=0 roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 process/fix_alpha_border=true process/premult_alpha=false process/normal_map_invert_y=false diff --git a/enemies/ghost/ghost animation/Ghost 4.png.import b/enemies/ghost/ghost animation/Ghost 4.png.import index c1d6dfc..d2d9440 100644 --- a/enemies/ghost/ghost animation/Ghost 4.png.import +++ b/enemies/ghost/ghost animation/Ghost 4.png.import @@ -18,6 +18,8 @@ dest_files=["res://.godot/imported/Ghost 4.png-5beda85c6f5331ee251ae12d3489921c. compress/mode=0 compress/high_quality=false compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 compress/hdr_compression=1 compress/normal_map=0 compress/channel_pack=0 @@ -25,6 +27,10 @@ mipmaps/generate=false mipmaps/limit=-1 roughness/mode=0 roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 process/fix_alpha_border=true process/premult_alpha=false process/normal_map_invert_y=false diff --git a/enemies/ghost/ghost animation/Ghost 5.png.import b/enemies/ghost/ghost animation/Ghost 5.png.import index 44ea75c..4cb48cc 100644 --- a/enemies/ghost/ghost animation/Ghost 5.png.import +++ b/enemies/ghost/ghost animation/Ghost 5.png.import @@ -18,6 +18,8 @@ dest_files=["res://.godot/imported/Ghost 5.png-0726806101c6863f92a162d2ee5e7de2. compress/mode=0 compress/high_quality=false compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 compress/hdr_compression=1 compress/normal_map=0 compress/channel_pack=0 @@ -25,6 +27,10 @@ mipmaps/generate=false mipmaps/limit=-1 roughness/mode=0 roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 process/fix_alpha_border=true process/premult_alpha=false process/normal_map_invert_y=false diff --git a/player/Heart Grey.png.import b/player/Heart Grey.png.import index 4683b68..4913ba6 100644 --- a/player/Heart Grey.png.import +++ b/player/Heart Grey.png.import @@ -18,6 +18,8 @@ dest_files=["res://.godot/imported/Heart Grey.png-6b86b8edc4802c3a483d9a14eb7ce1 compress/mode=0 compress/high_quality=false compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 compress/hdr_compression=1 compress/normal_map=0 compress/channel_pack=0 @@ -25,6 +27,10 @@ mipmaps/generate=false mipmaps/limit=-1 roughness/mode=0 roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 process/fix_alpha_border=true process/premult_alpha=false process/normal_map_invert_y=false diff --git a/player/Heart.png.import b/player/Heart.png.import index 38455ee..dc7cbcd 100644 --- a/player/Heart.png.import +++ b/player/Heart.png.import @@ -18,6 +18,8 @@ dest_files=["res://.godot/imported/Heart.png-33902e9ff8206d83f93ea6d088b4a1bc.ct compress/mode=0 compress/high_quality=false compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 compress/hdr_compression=1 compress/normal_map=0 compress/channel_pack=0 @@ -25,6 +27,10 @@ mipmaps/generate=false mipmaps/limit=-1 roughness/mode=0 roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 process/fix_alpha_border=true process/premult_alpha=false process/normal_map_invert_y=false diff --git a/player/Heart_cut Grey.png.import b/player/Heart_cut Grey.png.import index 31c6ef0..be70c9d 100644 --- a/player/Heart_cut Grey.png.import +++ b/player/Heart_cut Grey.png.import @@ -18,6 +18,8 @@ dest_files=["res://.godot/imported/Heart_cut Grey.png-b4b9be15b5a8a36395d31eba43 compress/mode=0 compress/high_quality=false compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 compress/hdr_compression=1 compress/normal_map=0 compress/channel_pack=0 @@ -25,6 +27,10 @@ mipmaps/generate=false mipmaps/limit=-1 roughness/mode=0 roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 process/fix_alpha_border=true process/premult_alpha=false process/normal_map_invert_y=false diff --git a/player/Heart_cut.png.import b/player/Heart_cut.png.import index 1646dfd..fdc244b 100644 --- a/player/Heart_cut.png.import +++ b/player/Heart_cut.png.import @@ -18,6 +18,8 @@ dest_files=["res://.godot/imported/Heart_cut.png-f11ef12fc6c55a0077b5ba659ce17ad compress/mode=0 compress/high_quality=false compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 compress/hdr_compression=1 compress/normal_map=0 compress/channel_pack=0 @@ -25,6 +27,10 @@ mipmaps/generate=false mipmaps/limit=-1 roughness/mode=0 roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 process/fix_alpha_border=true process/premult_alpha=false process/normal_map_invert_y=false diff --git a/player/Player_Walk/Walk 1.png.import b/player/Player_Walk/Walk 1.png.import index 97cf918..7803358 100644 --- a/player/Player_Walk/Walk 1.png.import +++ b/player/Player_Walk/Walk 1.png.import @@ -18,6 +18,8 @@ dest_files=["res://.godot/imported/Walk 1.png-47c623e9d3540b4a00d2bddf52ae0b2a.c compress/mode=0 compress/high_quality=false compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 compress/hdr_compression=1 compress/normal_map=0 compress/channel_pack=0 @@ -25,6 +27,10 @@ mipmaps/generate=false mipmaps/limit=-1 roughness/mode=0 roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 process/fix_alpha_border=true process/premult_alpha=false process/normal_map_invert_y=false diff --git a/player/Player_Walk/Walk 2.png.import b/player/Player_Walk/Walk 2.png.import index 48f18ef..3fac54f 100644 --- a/player/Player_Walk/Walk 2.png.import +++ b/player/Player_Walk/Walk 2.png.import @@ -18,6 +18,8 @@ dest_files=["res://.godot/imported/Walk 2.png-5dea4fdec55fa43e26680e08090fd654.c compress/mode=0 compress/high_quality=false compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 compress/hdr_compression=1 compress/normal_map=0 compress/channel_pack=0 @@ -25,6 +27,10 @@ mipmaps/generate=false mipmaps/limit=-1 roughness/mode=0 roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 process/fix_alpha_border=true process/premult_alpha=false process/normal_map_invert_y=false diff --git a/player/Player_Walk/Walk 3.png.import b/player/Player_Walk/Walk 3.png.import index 285ace3..c65053d 100644 --- a/player/Player_Walk/Walk 3.png.import +++ b/player/Player_Walk/Walk 3.png.import @@ -18,6 +18,8 @@ dest_files=["res://.godot/imported/Walk 3.png-27890c0cb512383b8ecbd848c73efee1.c compress/mode=0 compress/high_quality=false compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 compress/hdr_compression=1 compress/normal_map=0 compress/channel_pack=0 @@ -25,6 +27,10 @@ mipmaps/generate=false mipmaps/limit=-1 roughness/mode=0 roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 process/fix_alpha_border=true process/premult_alpha=false process/normal_map_invert_y=false diff --git a/player/Player_Walk/Walk 4.png.import b/player/Player_Walk/Walk 4.png.import index 03aa90d..c12f6b8 100644 --- a/player/Player_Walk/Walk 4.png.import +++ b/player/Player_Walk/Walk 4.png.import @@ -18,6 +18,8 @@ dest_files=["res://.godot/imported/Walk 4.png-232b1eae2acf3ad82130431014262cde.c compress/mode=0 compress/high_quality=false compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 compress/hdr_compression=1 compress/normal_map=0 compress/channel_pack=0 @@ -25,6 +27,10 @@ mipmaps/generate=false mipmaps/limit=-1 roughness/mode=0 roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 process/fix_alpha_border=true process/premult_alpha=false process/normal_map_invert_y=false diff --git a/player/Player_Walk/Walk 5.png.import b/player/Player_Walk/Walk 5.png.import index fe3ebef..47122be 100644 --- a/player/Player_Walk/Walk 5.png.import +++ b/player/Player_Walk/Walk 5.png.import @@ -18,6 +18,8 @@ dest_files=["res://.godot/imported/Walk 5.png-cfb8eb15ace876127c083283fe74cdc0.c compress/mode=0 compress/high_quality=false compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 compress/hdr_compression=1 compress/normal_map=0 compress/channel_pack=0 @@ -25,6 +27,10 @@ mipmaps/generate=false mipmaps/limit=-1 roughness/mode=0 roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 process/fix_alpha_border=true process/premult_alpha=false process/normal_map_invert_y=false diff --git a/player/Player_Walk/Walk 6.png.import b/player/Player_Walk/Walk 6.png.import index 22d7868..5b2bdef 100644 --- a/player/Player_Walk/Walk 6.png.import +++ b/player/Player_Walk/Walk 6.png.import @@ -18,6 +18,8 @@ dest_files=["res://.godot/imported/Walk 6.png-f243f98e182be67eb8681a11d34ee554.c compress/mode=0 compress/high_quality=false compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 compress/hdr_compression=1 compress/normal_map=0 compress/channel_pack=0 @@ -25,6 +27,10 @@ mipmaps/generate=false mipmaps/limit=-1 roughness/mode=0 roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 process/fix_alpha_border=true process/premult_alpha=false process/normal_map_invert_y=false diff --git a/player/attack_animation/Attack Animation 0.png.import b/player/attack_animation/Attack Animation 0.png.import index 96e2c41..a1cb9cd 100644 --- a/player/attack_animation/Attack Animation 0.png.import +++ b/player/attack_animation/Attack Animation 0.png.import @@ -18,6 +18,8 @@ dest_files=["res://.godot/imported/Attack Animation 0.png-489acc9ce1151ab08e3e3b compress/mode=0 compress/high_quality=false compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 compress/hdr_compression=1 compress/normal_map=0 compress/channel_pack=0 @@ -25,6 +27,10 @@ mipmaps/generate=false mipmaps/limit=-1 roughness/mode=0 roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 process/fix_alpha_border=true process/premult_alpha=false process/normal_map_invert_y=false diff --git a/player/attack_animation/Attack Animation 1.png.import b/player/attack_animation/Attack Animation 1.png.import index 3d443df..d3c1bc7 100644 --- a/player/attack_animation/Attack Animation 1.png.import +++ b/player/attack_animation/Attack Animation 1.png.import @@ -18,6 +18,8 @@ dest_files=["res://.godot/imported/Attack Animation 1.png-ee24e1daff1b2693d0a213 compress/mode=0 compress/high_quality=false compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 compress/hdr_compression=1 compress/normal_map=0 compress/channel_pack=0 @@ -25,6 +27,10 @@ mipmaps/generate=false mipmaps/limit=-1 roughness/mode=0 roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 process/fix_alpha_border=true process/premult_alpha=false process/normal_map_invert_y=false diff --git a/player/attack_animation/Attack Animation 2.png.import b/player/attack_animation/Attack Animation 2.png.import index 8b1592c..9fb632f 100644 --- a/player/attack_animation/Attack Animation 2.png.import +++ b/player/attack_animation/Attack Animation 2.png.import @@ -18,6 +18,8 @@ dest_files=["res://.godot/imported/Attack Animation 2.png-d547f6c17bbb65420b4918 compress/mode=0 compress/high_quality=false compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 compress/hdr_compression=1 compress/normal_map=0 compress/channel_pack=0 @@ -25,6 +27,10 @@ mipmaps/generate=false mipmaps/limit=-1 roughness/mode=0 roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 process/fix_alpha_border=true process/premult_alpha=false process/normal_map_invert_y=false diff --git a/player/attack_animation/Attack Animation 3.png.import b/player/attack_animation/Attack Animation 3.png.import index b0b138f..0cc27c5 100644 --- a/player/attack_animation/Attack Animation 3.png.import +++ b/player/attack_animation/Attack Animation 3.png.import @@ -18,6 +18,8 @@ dest_files=["res://.godot/imported/Attack Animation 3.png-d741f7f68a27aab201a287 compress/mode=0 compress/high_quality=false compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 compress/hdr_compression=1 compress/normal_map=0 compress/channel_pack=0 @@ -25,6 +27,10 @@ mipmaps/generate=false mipmaps/limit=-1 roughness/mode=0 roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 process/fix_alpha_border=true process/premult_alpha=false process/normal_map_invert_y=false diff --git a/player/double_jump/Double Jump 0.png.import b/player/double_jump/Double Jump 0.png.import index c685386..40436aa 100644 --- a/player/double_jump/Double Jump 0.png.import +++ b/player/double_jump/Double Jump 0.png.import @@ -18,6 +18,8 @@ dest_files=["res://.godot/imported/Double Jump 0.png-e1ba562e6b13c8446a336c30d2d compress/mode=0 compress/high_quality=false compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 compress/hdr_compression=1 compress/normal_map=0 compress/channel_pack=0 @@ -25,6 +27,10 @@ mipmaps/generate=false mipmaps/limit=-1 roughness/mode=0 roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 process/fix_alpha_border=true process/premult_alpha=false process/normal_map_invert_y=false diff --git a/player/double_jump/Double Jump 1.png.import b/player/double_jump/Double Jump 1.png.import index 04b02df..87b6af1 100644 --- a/player/double_jump/Double Jump 1.png.import +++ b/player/double_jump/Double Jump 1.png.import @@ -18,6 +18,8 @@ dest_files=["res://.godot/imported/Double Jump 1.png-69539f806c4752d0093ea6a956b compress/mode=0 compress/high_quality=false compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 compress/hdr_compression=1 compress/normal_map=0 compress/channel_pack=0 @@ -25,6 +27,10 @@ mipmaps/generate=false mipmaps/limit=-1 roughness/mode=0 roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 process/fix_alpha_border=true process/premult_alpha=false process/normal_map_invert_y=false diff --git a/player/double_jump/Double Jump 2.png.import b/player/double_jump/Double Jump 2.png.import index 75d6760..4818254 100644 --- a/player/double_jump/Double Jump 2.png.import +++ b/player/double_jump/Double Jump 2.png.import @@ -18,6 +18,8 @@ dest_files=["res://.godot/imported/Double Jump 2.png-f1a820e0078cf2a6b005cbe59b4 compress/mode=0 compress/high_quality=false compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 compress/hdr_compression=1 compress/normal_map=0 compress/channel_pack=0 @@ -25,6 +27,10 @@ mipmaps/generate=false mipmaps/limit=-1 roughness/mode=0 roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 process/fix_alpha_border=true process/premult_alpha=false process/normal_map_invert_y=false diff --git a/player/double_jump/Double Jump 3.png.import b/player/double_jump/Double Jump 3.png.import index ff6783f..29d7306 100644 --- a/player/double_jump/Double Jump 3.png.import +++ b/player/double_jump/Double Jump 3.png.import @@ -18,6 +18,8 @@ dest_files=["res://.godot/imported/Double Jump 3.png-4cfca0f35700bb4d12354620aff compress/mode=0 compress/high_quality=false compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 compress/hdr_compression=1 compress/normal_map=0 compress/channel_pack=0 @@ -25,6 +27,10 @@ mipmaps/generate=false mipmaps/limit=-1 roughness/mode=0 roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 process/fix_alpha_border=true process/premult_alpha=false process/normal_map_invert_y=false diff --git a/player/double_jump/Double Jump 4.png.import b/player/double_jump/Double Jump 4.png.import index cb7dc72..2b6dfa0 100644 --- a/player/double_jump/Double Jump 4.png.import +++ b/player/double_jump/Double Jump 4.png.import @@ -18,6 +18,8 @@ dest_files=["res://.godot/imported/Double Jump 4.png-3e8f9f85498209cd3a65d2e632f compress/mode=0 compress/high_quality=false compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 compress/hdr_compression=1 compress/normal_map=0 compress/channel_pack=0 @@ -25,6 +27,10 @@ mipmaps/generate=false mipmaps/limit=-1 roughness/mode=0 roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 process/fix_alpha_border=true process/premult_alpha=false process/normal_map_invert_y=false diff --git a/traps/Morning Star.png.import b/traps/Morning Star.png.import index 5f48a13..27c6bc9 100644 --- a/traps/Morning Star.png.import +++ b/traps/Morning Star.png.import @@ -18,6 +18,8 @@ dest_files=["res://.godot/imported/Morning Star.png-5c8aa4aef917e837888eb86be042 compress/mode=0 compress/high_quality=false compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 compress/hdr_compression=1 compress/normal_map=0 compress/channel_pack=0 @@ -25,6 +27,10 @@ mipmaps/generate=false mipmaps/limit=-1 roughness/mode=0 roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 process/fix_alpha_border=true process/premult_alpha=false process/normal_map_invert_y=false diff --git a/water/Warning_particle_emmission_shape.png.import b/water/Warning_particle_emmission_shape.png.import index 28ea240..5b1d8aa 100644 --- a/water/Warning_particle_emmission_shape.png.import +++ b/water/Warning_particle_emmission_shape.png.import @@ -18,6 +18,8 @@ dest_files=["res://.godot/imported/Warning_particle_emmission_shape.png-dcaecf9f compress/mode=0 compress/high_quality=false compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 compress/hdr_compression=1 compress/normal_map=0 compress/channel_pack=0 @@ -25,6 +27,10 @@ mipmaps/generate=false mipmaps/limit=-1 roughness/mode=0 roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 process/fix_alpha_border=true process/premult_alpha=false process/normal_map_invert_y=false diff --git a/world/Background Prototype/Background Prototype Layer 1.png.import b/world/Background Prototype/Background Prototype Layer 1.png.import index 3291c4a..2b3265d 100644 --- a/world/Background Prototype/Background Prototype Layer 1.png.import +++ b/world/Background Prototype/Background Prototype Layer 1.png.import @@ -18,6 +18,8 @@ dest_files=["res://.godot/imported/Background Prototype Layer 1.png-47bb54b6d20a compress/mode=0 compress/high_quality=false compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 compress/hdr_compression=1 compress/normal_map=0 compress/channel_pack=0 @@ -25,6 +27,10 @@ mipmaps/generate=false mipmaps/limit=-1 roughness/mode=0 roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 process/fix_alpha_border=true process/premult_alpha=false process/normal_map_invert_y=false diff --git a/world/Background Prototype/Background Prototype Layer 2.png.import b/world/Background Prototype/Background Prototype Layer 2.png.import index 7415d89..f18ed3b 100644 --- a/world/Background Prototype/Background Prototype Layer 2.png.import +++ b/world/Background Prototype/Background Prototype Layer 2.png.import @@ -18,6 +18,8 @@ dest_files=["res://.godot/imported/Background Prototype Layer 2.png-ab86220f0fff compress/mode=0 compress/high_quality=false compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 compress/hdr_compression=1 compress/normal_map=0 compress/channel_pack=0 @@ -25,6 +27,10 @@ mipmaps/generate=false mipmaps/limit=-1 roughness/mode=0 roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 process/fix_alpha_border=true process/premult_alpha=false process/normal_map_invert_y=false diff --git a/world/Background Prototype/Background Prototype Layer 3.png.import b/world/Background Prototype/Background Prototype Layer 3.png.import index 7399a52..816fbed 100644 --- a/world/Background Prototype/Background Prototype Layer 3.png.import +++ b/world/Background Prototype/Background Prototype Layer 3.png.import @@ -18,6 +18,8 @@ dest_files=["res://.godot/imported/Background Prototype Layer 3.png-5a49ea16a5dc compress/mode=0 compress/high_quality=false compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 compress/hdr_compression=1 compress/normal_map=0 compress/channel_pack=0 @@ -25,6 +27,10 @@ mipmaps/generate=false mipmaps/limit=-1 roughness/mode=0 roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 process/fix_alpha_border=true process/premult_alpha=false process/normal_map_invert_y=false diff --git a/world/Background Prototype/Background Prototype Layer 4.png.import b/world/Background Prototype/Background Prototype Layer 4.png.import index 6ff53ad..b465008 100644 --- a/world/Background Prototype/Background Prototype Layer 4.png.import +++ b/world/Background Prototype/Background Prototype Layer 4.png.import @@ -18,6 +18,8 @@ dest_files=["res://.godot/imported/Background Prototype Layer 4.png-ee5791549e67 compress/mode=0 compress/high_quality=false compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 compress/hdr_compression=1 compress/normal_map=0 compress/channel_pack=0 @@ -25,6 +27,10 @@ mipmaps/generate=false mipmaps/limit=-1 roughness/mode=0 roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 process/fix_alpha_border=true process/premult_alpha=false process/normal_map_invert_y=false diff --git a/world/Background Prototype/Background prototype.png.import b/world/Background Prototype/Background prototype.png.import index c7895b7..ebf7d0f 100644 --- a/world/Background Prototype/Background prototype.png.import +++ b/world/Background Prototype/Background prototype.png.import @@ -18,6 +18,8 @@ dest_files=["res://.godot/imported/Background prototype.png-3a0b707a19d2bad45954 compress/mode=0 compress/high_quality=false compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 compress/hdr_compression=1 compress/normal_map=0 compress/channel_pack=0 @@ -25,6 +27,10 @@ mipmaps/generate=false mipmaps/limit=-1 roughness/mode=0 roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 process/fix_alpha_border=true process/premult_alpha=false process/normal_map_invert_y=false