summaryrefslogtreecommitdiff
path: root/Levels/Level.gd
diff options
context:
space:
mode:
authorDaniel Weipert <code@drogueronin.de>2021-02-14 14:53:17 +0100
committerDaniel Weipert <code@drogueronin.de>2021-02-14 14:53:17 +0100
commit7115379ccf5714816eeb91fc16d3a63e019c8082 (patch)
treef28c7595ca3f1324bcffadd40027df6c46f7d321 /Levels/Level.gd
parent332bab8de321d0358b30d5bf159cbda512c14852 (diff)
Adds user configurable key bindings
Diffstat (limited to 'Levels/Level.gd')
-rw-r--r--Levels/Level.gd5
1 files changed, 5 insertions, 0 deletions
diff --git a/Levels/Level.gd b/Levels/Level.gd
index 6777854..2e623e5 100644
--- a/Levels/Level.gd
+++ b/Levels/Level.gd
@@ -25,6 +25,11 @@ func _process(delta):
self.LabelTimer.text = "%.2fs" % self.timer
+func _input(event):
+ if event is InputEventKey and event.scancode == KEY_ESCAPE:
+ Global.open_menu()
+
+
func set_player(character: KinematicBody2D):
character.position.x = $Character.position.x
character.position.y = $Character.position.y