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 /servers/navigation_server.cpp | |
parent | 2ca5f22bcea8fdbc8b490d9e8757573196578f5d (diff) | |
download | redot-engine-c143b5c6770c690e46545e17c7b28bee698e5a3a.tar.gz |
Flushes commands just before the navigation server is destroyed
Diffstat (limited to 'servers/navigation_server.cpp')
-rw-r--r-- | servers/navigation_server.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/servers/navigation_server.cpp b/servers/navigation_server.cpp index f31795fb35..f2b727ac47 100644 --- a/servers/navigation_server.cpp +++ b/servers/navigation_server.cpp @@ -75,7 +75,7 @@ void NavigationServer::_bind_methods() { ClassDB::bind_method(D_METHOD("free", "object"), &NavigationServer::free); ClassDB::bind_method(D_METHOD("set_active", "active"), &NavigationServer::set_active); - ClassDB::bind_method(D_METHOD("step", "delta_time"), &NavigationServer::step); + ClassDB::bind_method(D_METHOD("process", "delta_time"), &NavigationServer::process); } const NavigationServer *NavigationServer::get_singleton() { |