diff options
author | bncastle <bncastle@pixelbytestudios.com> | 2018-04-16 10:44:46 -0400 |
---|---|---|
committer | bncastle <bncastle@pixelbytestudios.com> | 2018-04-16 10:44:46 -0400 |
commit | 7eed3cc19924e7474f8b0c5db63014e1997dc30a (patch) | |
tree | 503a5242e01b3a57836a7f789f9c2a88836569cb /doc | |
parent | 7b5703bc41460c5c8b955f879190625da85a2a81 (diff) |
Add descriptions for GroupCall flags
Add descriptions for GroupCall flags
Diffstat (limited to 'doc')
-rw-r--r-- | doc/classes/SceneTree.xml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/doc/classes/SceneTree.xml b/doc/classes/SceneTree.xml index 8846616851..dec0cbbcc3 100644 --- a/doc/classes/SceneTree.xml +++ b/doc/classes/SceneTree.xml @@ -367,12 +367,16 @@ </signals> <constants> <constant name="GROUP_CALL_DEFAULT" value="0" enum="GroupCallFlags"> + Call a group with no flags (default). </constant> <constant name="GROUP_CALL_REVERSE" value="1" enum="GroupCallFlags"> + Call a group in reverse scene order. </constant> <constant name="GROUP_CALL_REALTIME" value="2" enum="GroupCallFlags"> + Call a group immediately (calls are normally made on idle). </constant> <constant name="GROUP_CALL_UNIQUE" value="4" enum="GroupCallFlags"> + Call a group only once even if the call is executed many times. </constant> <constant name="STRETCH_MODE_DISABLED" value="0" enum="StretchMode"> </constant> |