mirror of
https://github.com/Relintai/pandemonium_demo_projects.git
synced 2025-01-08 15:09:53 +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()
|