mirror of
https://github.com/godotengine/godot-demo-projects.git
synced 2025-12-16 13:30:07 +01:00
13 lines
241 B
GDScript
13 lines
241 B
GDScript
extends Spatial
|
|
|
|
|
|
func _on_pause_pressed():
|
|
get_node("pause_popup").set_exclusive(true)
|
|
get_node("pause_popup").popup()
|
|
get_tree().set_pause(true)
|
|
|
|
|
|
func _on_unpause_pressed():
|
|
get_node("pause_popup").hide()
|
|
get_tree().set_pause(false)
|