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