diff options
author | Jonas Bernard <public.jbernard@web.de> | 2021-04-25 19:19:03 +0200 |
---|---|---|
committer | Jonas Bernard <public.jbernard@web.de> | 2021-04-25 19:19:03 +0200 |
commit | 24a954d8703d7f4be0ac980517f5e23b4cab3dee (patch) | |
tree | 86f473068b07435d315d5d2b214a33ad9bc9a08f /scenes | |
parent | 3e8e361c8c6b9a7d02361c2f72a20e5e41873052 (diff) | |
download | ldjam48-24a954d8703d7f4be0ac980517f5e23b4cab3dee.tar.gz ldjam48-24a954d8703d7f4be0ac980517f5e23b4cab3dee.tar.bz2 ldjam48-24a954d8703d7f4be0ac980517f5e23b4cab3dee.zip |
CUrsor an dproject settings
Diffstat (limited to 'scenes')
-rw-r--r-- | scenes/menu.tscn | 7 | ||||
-rw-r--r-- | scenes/pause.gd | 4 |
2 files changed, 5 insertions, 6 deletions
diff --git a/scenes/menu.tscn b/scenes/menu.tscn index 126c482..71b525c 100644 --- a/scenes/menu.tscn +++ b/scenes/menu.tscn @@ -95,7 +95,7 @@ texture = ExtResource( 3 ) [node name="Content" type="Node2D" parent="."] [node name="Badge" type="Node2D" parent="Content"] -position = Vector2( 630.621, 247.313 ) +position = Vector2( 630.621, -217.796 ) [node name="bluestripe" type="Sprite" parent="Content/Badge"] position = Vector2( -1.27783, -0.902592 ) @@ -116,12 +116,12 @@ scale = Vector2( 4, 4 ) texture = SubResource( 1 ) [node name="Exit" parent="Content" instance=ExtResource( 2 )] -position = Vector2( 850, 500 ) +position = Vector2( 1508.94, 500 ) text = "Exit" fixed_width = 150 [node name="Strart" parent="Content" instance=ExtResource( 2 )] -position = Vector2( 450, 500 ) +position = Vector2( -150, 500 ) text = "Start" fixed_width = 150 @@ -131,7 +131,6 @@ anims/startgame = SubResource( 2 ) [node name="Outgoing" type="AnimationPlayer" parent="."] anims/tointro = SubResource( 3 ) - [connection signal="on_click" from="Content/Exit" to="." method="_on_Exit_on_click"] [connection signal="on_click" from="Content/Strart" to="." method="_on_Strart_on_click"] [connection signal="animation_finished" from="Transitions" to="." method="_on_Transitions_animation_finished"] diff --git a/scenes/pause.gd b/scenes/pause.gd index 43a2d5b..57ab574 100644 --- a/scenes/pause.gd +++ b/scenes/pause.gd @@ -6,7 +6,7 @@ onready var backgroud = $Sprite func pause(): pause_menu.visible = true pause_menu.pause_mode = PAUSE_MODE_PROCESS # to be save - get_tree().paused = true + # get_tree().paused = true func _ready(): @@ -15,7 +15,7 @@ func _ready(): func _on_Resume_on_click(): pause_menu.visible = false - get_tree().paused = false + # get_tree().paused = false func _on_Main_Menu_on_click(): |