From 2a4f2f451db61625f324c70dce2599c2db15615f Mon Sep 17 00:00:00 2001 From: androide23 Date: Sat, 14 Mar 2026 17:01:11 -0300 Subject: [PATCH 1/4] (feat): added obstacles with "ColorRect" node. --- Scene.tscn | 67 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 67 insertions(+) diff --git a/Scene.tscn b/Scene.tscn index 17a581a..aa6c797 100644 --- a/Scene.tscn +++ b/Scene.tscn @@ -4,4 +4,71 @@ [node name="Scene" type="Node2D" unique_id=2686400] +[node name="Floor" type="ColorRect" parent="." unique_id=1809302655] +modulate = Color(0.12225223, 0.12225223, 0.12225223, 1) +offset_right = 1152.0 +offset_bottom = 648.0 + +[node name="Wall_Left" type="ColorRect" parent="." unique_id=239533889] +offset_right = 20.0 +offset_bottom = 648.0 + +[node name="Wall_Right" type="ColorRect" parent="." unique_id=222447179] +offset_left = 1132.0 +offset_right = 1152.0 +offset_bottom = 648.0 + +[node name="Wall_Top" type="ColorRect" parent="." unique_id=960440860] +offset_right = 1152.0 +offset_bottom = 20.0 + +[node name="Wall_Bottom" type="ColorRect" parent="." unique_id=1847920263] +offset_top = 628.0 +offset_right = 1152.0 +offset_bottom = 648.0 + +[node name="Wall_1" type="ColorRect" parent="." unique_id=1686462486] +offset_left = 115.0 +offset_top = 98.0 +offset_right = 135.0 +offset_bottom = 648.0 + +[node name="Wall_2" type="ColorRect" parent="." unique_id=770889166] +offset_left = 115.0 +offset_top = 78.0 +offset_right = 265.0 +offset_bottom = 98.0 + +[node name="Wall_3" type="ColorRect" parent="." unique_id=2010932716] +offset_left = 365.0 +offset_top = 78.0 +offset_right = 515.0 +offset_bottom = 98.0 + +[node name="Wall_4" type="ColorRect" parent="." unique_id=500817729] +offset_left = 495.0 +offset_top = 98.0 +offset_right = 515.0 +offset_bottom = 548.0 + +[node name="Wall_5" type="ColorRect" parent="." unique_id=1729691188] +offset_left = 515.0 +offset_top = 528.0 +offset_right = 932.0 +offset_bottom = 548.0 + +[node name="Wall_6" type="ColorRect" parent="." unique_id=599767589] +offset_left = 1032.0 +offset_top = 98.0 +offset_right = 1052.0 +offset_bottom = 548.0 + +[node name="Wall_7" type="ColorRect" parent="." unique_id=1513105267] +offset_left = 615.0 +offset_top = 78.0 +offset_right = 1052.0 +offset_bottom = 98.0 + [node name="Player" parent="." unique_id=342889094 instance=ExtResource("1_t6lng")] +position = Vector2(68, 606) +scale = Vector2(0.5, 0.5) From a93c1cb98934ebb6b03ff0ea8900de8755101d2c Mon Sep 17 00:00:00 2001 From: androide23 Date: Sat, 14 Mar 2026 17:13:23 -0300 Subject: [PATCH 2/4] (feat) Adjusted color with modulate; - Adjusted player color; - Adjusted Scene color; --- Player.tscn | 2 +- Scene.tscn | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Player.tscn b/Player.tscn index 42d0559..633db1d 100644 --- a/Player.tscn +++ b/Player.tscn @@ -5,7 +5,7 @@ [node name="Player" type="Node2D" unique_id=342889094] [node name="Body" type="Sprite2D" parent="." unique_id=1744900575] -modulate = Color(0.007843138, 0, 0.8666667, 1) +modulate = Color(0.4847452, 0.6489816, 1, 1) scale = Vector2(0.5, 0.5) texture = ExtResource("1_xhfnw") diff --git a/Scene.tscn b/Scene.tscn index aa6c797..c9e0d15 100644 --- a/Scene.tscn +++ b/Scene.tscn @@ -3,6 +3,7 @@ [ext_resource type="PackedScene" uid="uid://47rckycyln06" path="res://Player.tscn" id="1_t6lng"] [node name="Scene" type="Node2D" unique_id=2686400] +modulate = Color(0.99999994, 0.8188805, 0.7600627, 1) [node name="Floor" type="ColorRect" parent="." unique_id=1809302655] modulate = Color(0.12225223, 0.12225223, 0.12225223, 1) From 2fe8a4ad9332729149e3871f7cb2f0df6a3fa0e2 Mon Sep 17 00:00:00 2001 From: androide23 Date: Sat, 14 Mar 2026 17:22:53 -0300 Subject: [PATCH 3/4] (feat) Adjusted Player child Z-Index; --- Player.tscn | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Player.tscn b/Player.tscn index 633db1d..06a3797 100644 --- a/Player.tscn +++ b/Player.tscn @@ -6,10 +6,12 @@ [node name="Body" type="Sprite2D" parent="." unique_id=1744900575] modulate = Color(0.4847452, 0.6489816, 1, 1) +z_index = 1 scale = Vector2(0.5, 0.5) texture = ExtResource("1_xhfnw") [node name="RightArm" type="ColorRect" parent="Body" unique_id=1645534097] +z_as_relative = false offset_left = 45.0 offset_top = -140.0 offset_right = 63.0 @@ -17,6 +19,7 @@ offset_bottom = -40.0 pivot_offset_ratio = Vector2(0, 1) [node name="LeftArm" type="ColorRect" parent="Body" unique_id=1707139900] +z_as_relative = false offset_left = -63.0 offset_top = -140.0 offset_right = -45.0 From fcdf947c89dc0110f60ec4fb38cc18020b7ff715 Mon Sep 17 00:00:00 2001 From: androide23 Date: Sun, 15 Mar 2026 00:16:08 -0300 Subject: [PATCH 4/4] (feat): Adjusted areana design and player position --- Scene.tscn | 23 +++++++++++++++++++++-- 1 file changed, 21 insertions(+), 2 deletions(-) diff --git a/Scene.tscn b/Scene.tscn index c9e0d15..5226b94 100644 --- a/Scene.tscn +++ b/Scene.tscn @@ -32,7 +32,7 @@ offset_bottom = 648.0 offset_left = 115.0 offset_top = 98.0 offset_right = 135.0 -offset_bottom = 648.0 +offset_bottom = 528.0 [node name="Wall_2" type="ColorRect" parent="." unique_id=770889166] offset_left = 115.0 @@ -70,6 +70,25 @@ offset_top = 78.0 offset_right = 1052.0 offset_bottom = 98.0 +[node name="Wall_8" type="ColorRect" parent="." unique_id=1904889435] +offset_left = 115.0 +offset_top = 528.0 +offset_right = 395.0 +offset_bottom = 548.0 + +[node name="Wall_9" type="ColorRect" parent="." unique_id=106773725] +offset_left = 750.0 +offset_top = 98.0 +offset_right = 770.0 +offset_bottom = 313.0 + +[node name="Wall_10" type="ColorRect" parent="." unique_id=54740910] +offset_left = 750.0 +offset_top = 313.0 +offset_right = 932.0 +offset_bottom = 333.0 + [node name="Player" parent="." unique_id=342889094 instance=ExtResource("1_t6lng")] -position = Vector2(68, 606) +position = Vector2(797, 125) +rotation = 1.5707964 scale = Vector2(0.5, 0.5)