mirror of
https://github.com/Relintai/the_tower.git
synced 2024-11-14 10:27:21 +01:00
7 lines
146 B
GDScript
7 lines
146 B
GDScript
extends VoxelWorldBlocky
|
|
|
|
|
|
func _unhandled_key_input(event : InputEventKey) -> void:
|
|
if event.scancode == KEY_ENTER:
|
|
get_parent().next_level()
|