diff options
author | Marcelo Costa <> | 2024-01-28 11:08:36 -0300 |
---|---|---|
committer | Marcelo Costa <> | 2024-01-28 11:08:36 -0300 |
commit | 3b5cec44c283152818ce3c953750ab427ec3e030 (patch) | |
tree | 1183255606f7dd21ffcc3086949f2ad6266a11be | |
parent | 77dfeb0afae6937600d2bfd847e0151c9214e36d (diff) | |
download | gamejam-ggj-2024-3b5cec44c283152818ce3c953750ab427ec3e030.tar.gz gamejam-ggj-2024-3b5cec44c283152818ce3c953750ab427ec3e030.tar.bz2 gamejam-ggj-2024-3b5cec44c283152818ce3c953750ab427ec3e030.zip |
Balance pass on Find Window and Heart Break minigames
-rw-r--r-- | game/microgames/find_window/find_window.tscn | 26 | ||||
-rw-r--r-- | game/microgames/heart_break/heart_break.tscn | 11 | ||||
-rw-r--r-- | game/microgames/heart_break/player_heart.gd | 2 |
3 files changed, 6 insertions, 33 deletions
diff --git a/game/microgames/find_window/find_window.tscn b/game/microgames/find_window/find_window.tscn index 05a8a3b..295456a 100644 --- a/game/microgames/find_window/find_window.tscn +++ b/game/microgames/find_window/find_window.tscn @@ -4,7 +4,7 @@ [ext_resource type="Texture2D" uid="uid://j0btxfrk2q8k" path="res://game/microgames/find_window/assets/Img_background_windows.png" id="1_w06df"] [ext_resource type="Texture2D" uid="uid://7h0hokgsxon4" path="res://game/microgames/find_window/assets/Img_MSN_namoradinha.png" id="3_ekh6x"] [ext_resource type="Script" path="res://game/microgames/find_window/msn_girlfriend.gd" id="4_ithnb"] -[ext_resource type="PackedScene" path="res://game/microgames/find_window/msn_regular.tscn" id="4_t7t3v"] +[ext_resource type="PackedScene" uid="uid://dxo3khe6emukf" path="res://game/microgames/find_window/msn_regular.tscn" id="4_t7t3v"] [sub_resource type="LabelSettings" id="LabelSettings_csx47"] font_color = Color(0.443137, 0.443137, 0.443137, 1) @@ -104,30 +104,6 @@ offset_top = 162.0 offset_right = 876.0 offset_bottom = 620.0 -[node name="ImgMsnNormal6" parent="AllWindows" instance=ExtResource("4_t7t3v")] -visible = false -layout_mode = 0 -offset_left = 258.0 -offset_top = 162.0 -offset_right = 876.0 -offset_bottom = 620.0 - -[node name="ImgMsnNormal7" parent="AllWindows" instance=ExtResource("4_t7t3v")] -visible = false -layout_mode = 0 -offset_left = 258.0 -offset_top = 162.0 -offset_right = 876.0 -offset_bottom = 620.0 - -[node name="ImgMsnNormal8" parent="AllWindows" instance=ExtResource("4_t7t3v")] -visible = false -layout_mode = 0 -offset_left = 258.0 -offset_top = 162.0 -offset_right = 876.0 -offset_bottom = 620.0 - [node name="Timer" type="Timer" parent="."] [connection signal="button_down" from="AllWindows/ImgMsnNamoradinha/SendButton" to="." method="_on_send_button_button_down"] diff --git a/game/microgames/heart_break/heart_break.tscn b/game/microgames/heart_break/heart_break.tscn index 933844e..f84b2c0 100644 --- a/game/microgames/heart_break/heart_break.tscn +++ b/game/microgames/heart_break/heart_break.tscn @@ -45,18 +45,15 @@ position = Vector2(574, 0) shape = SubResource("RectangleShape2D_upktn") [node name="Spiky" parent="." instance=ExtResource("3_dfa23")] -position = Vector2(182, 188) +position = Vector2(307, 95) [node name="Spiky2" parent="." instance=ExtResource("3_dfa23")] -position = Vector2(964, 218) +position = Vector2(878, 181) [node name="Spiky3" parent="." instance=ExtResource("3_dfa23")] -position = Vector2(235, 481) +position = Vector2(249, 490) [node name="Spiky4" parent="." instance=ExtResource("3_dfa23")] -position = Vector2(845, 496) - -[node name="Spiky5" parent="." instance=ExtResource("3_dfa23")] -position = Vector2(570, 104) +position = Vector2(821, 525) [connection signal="body_entered" from="PlayerHeart" to="." method="_on_player_heart_body_entered"] diff --git a/game/microgames/heart_break/player_heart.gd b/game/microgames/heart_break/player_heart.gd index 66847bb..e9556f6 100644 --- a/game/microgames/heart_break/player_heart.gd +++ b/game/microgames/heart_break/player_heart.gd @@ -1,6 +1,6 @@ extends RigidBody2D -var speed = 250 +var speed = 400 var playerControl = true # Called when the node enters the scene tree for the first time. |