From 776faa5c92ab943afa54d3bb9338367fcd6c98c5 Mon Sep 17 00:00:00 2001 From: Phischermen Date: Wed, 18 Nov 2020 16:45:20 -0800 Subject: [PATCH] Clarify that SceneTree::quit() does not immediately end the application. (cherry picked from commit 371d12a2f0a9425169df018ca99db71358c5a5af) --- doc/classes/SceneTree.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/classes/SceneTree.xml b/doc/classes/SceneTree.xml index 058fc6a7cb8..d3828c1b1f4 100644 --- a/doc/classes/SceneTree.xml +++ b/doc/classes/SceneTree.xml @@ -188,7 +188,7 @@ - Quits the application. A process [code]exit_code[/code] can optionally be passed as an argument. If this argument is [code]0[/code] or greater, it will override the [member OS.exit_code] defined before quitting the application. + Quits the application at the end of the current iteration. A process [code]exit_code[/code] can optionally be passed as an argument. If this argument is [code]0[/code] or greater, it will override the [member OS.exit_code] defined before quitting the application.