diff options
author | Andrea Catania <info@andreacatania.com> | 2020-02-26 09:42:51 +0100 |
---|---|---|
committer | Andrea Catania <info@andreacatania.com> | 2020-02-26 09:42:51 +0100 |
commit | c143b5c6770c690e46545e17c7b28bee698e5a3a (patch) | |
tree | bc84666863baaba727b7956a744ff1f162cc0ca4 /doc/classes/NavigationServer.xml | |
parent | 2ca5f22bcea8fdbc8b490d9e8757573196578f5d (diff) |
Flushes commands just before the navigation server is destroyed
Diffstat (limited to 'doc/classes/NavigationServer.xml')
-rw-r--r-- | doc/classes/NavigationServer.xml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/doc/classes/NavigationServer.xml b/doc/classes/NavigationServer.xml index 5eb9f34ead..1f65a6004e 100644 --- a/doc/classes/NavigationServer.xml +++ b/doc/classes/NavigationServer.xml @@ -358,13 +358,15 @@ Control activation of this server. </description> </method> - <method name="step"> + <method name="process"> <return type="void"> </return> <argument index="0" name="delta_time" type="float"> </argument> <description> - Steps the server. This is not threadsafe and must be called in single thread. + Process the collision avoidance agents. + The result of this process is needed by the physics server, so this must be called in the main thread. + Note: This function is not thread safe. </description> </method> </methods> |