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