summaryrefslogtreecommitdiff
path: root/scenes
diff options
context:
space:
mode:
Diffstat (limited to 'scenes')
-rw-r--r--scenes/introduction.tscn2
-rw-r--r--scenes/levels/base_level.tscn2
-rw-r--r--scenes/pause.gd4
-rw-r--r--scenes/pause.tscn1
4 files changed, 4 insertions, 5 deletions
diff --git a/scenes/introduction.tscn b/scenes/introduction.tscn
index 8447d96..303bea3 100644
--- a/scenes/introduction.tscn
+++ b/scenes/introduction.tscn
@@ -28,7 +28,7 @@ position = Vector2( 10, 260 )
text = "Continue"
[node name="Skip" parent="." instance=ExtResource( 3 )]
-position = Vector2( 552.365, 339.54 )
+position = Vector2( 557.234, 339.165 )
text = "Skip"
[connection signal="finished_reveal" from="TextReveal" to="." method="_on_TextReveal_finished_reveal"]
[connection signal="on_click" from="Continue" to="." method="_on_Button_on_click"]
diff --git a/scenes/levels/base_level.tscn b/scenes/levels/base_level.tscn
index cd32baa..c174aa3 100644
--- a/scenes/levels/base_level.tscn
+++ b/scenes/levels/base_level.tscn
@@ -38,7 +38,7 @@ maxhealth = 3
offset = 60
[node name="MenuButton" parent="." instance=ExtResource( 4 )]
-position = Vector2( 734.768, 113.978 )
+position = Vector2( 740.235, 113.978 )
text = "Menu"
[node name="Control" type="Control" parent="."]
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():
diff --git a/scenes/pause.tscn b/scenes/pause.tscn
index f88d04c..fecfc28 100644
--- a/scenes/pause.tscn
+++ b/scenes/pause.tscn
@@ -25,6 +25,5 @@ position = Vector2( -1.68179, 50 )
z_index = 1
text = "Main Menu"
fixed_width = 250
-
[connection signal="on_click" from="Resume" to="." method="_on_Resume_on_click"]
[connection signal="on_click" from="Main Menu" to="." method="_on_Main_Menu_on_click"]