diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2020-02-26 10:09:43 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-26 10:09:43 +0100 |
commit | 3a4c128f07cb744ed37529d8206e04cd0fa2e374 (patch) | |
tree | a85530c55c2fbaa9502a1136298e0cba4b8c594c /doc/classes/NavigationServer.xml | |
parent | fc5a400ce28c600da6ff4c40941e81d8ee588e53 (diff) | |
parent | c143b5c6770c690e46545e17c7b28bee698e5a3a (diff) |
Merge pull request #36551 from AndreaCatania/navigation_destruction_flush
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> |