forked from godotengine/godot
-
Notifications
You must be signed in to change notification settings - Fork 0
tutorial_quit
Lukas Sägesser edited this page Jun 22, 2015
·
3 revisions
Most platforms have the option to request the application to quit. On desktops, this is usually done with the "x" icon on the window titlebar. On Android, the back button is used to quit when on the main screen (and to go back otherwise).
The MainLoop has a special notification that is sent to all nodes when quit is requested: MainLoop.NOTIFICATION_WM_QUIT.
Handling it is done as follows (on any node):
func _notification(what):
if (what==MainLoop.NOTIFICATION_WM_QUIT_REQUEST):
get_tree().quit() #default behavior
When developing mobile apps, quitting is not desired unless the user is on the main screen, so the behavior can be changed.
It is important to note that by default, Godot apps have the built-in behavior to quit when quit is requested, this can be changed:
get_tree().set_auto_accept_quit(false)
(c) Juan Linietsky, Ariel Manzur, Distributed under the terms of the CC By license.