7 lines
131 B
GDScript
7 lines
131 B
GDScript
extends Spatial
|
|
|
|
|
|
func _physics_process(delta):
|
|
if Input.is_action_just_pressed("reset_map"):
|
|
get_tree().reload_current_scene()
|