From 7c4c4b998716922fcf62f1fe50473bf2f59087c8 Mon Sep 17 00:00:00 2001 From: Ricardo Buring Date: Wed, 7 Aug 2024 21:15:17 +0200 Subject: Move Godot Physics 2D into a module; add dummy 2D physics server If the module is enabled (default), 2D physics works as it did before. If the module is disabled and no other 2D physics server is registered (via a module or GDExtension), then we fall back to a dummy implementation which effectively disables 2D physics functionality (and a warning is printed). The dummy 2D physics server can also be selected explicitly, in which case no warning is printed. --- servers/physics_server_2d.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'servers/physics_server_2d.cpp') diff --git a/servers/physics_server_2d.cpp b/servers/physics_server_2d.cpp index da25621ba5..f4f9a2e8b7 100644 --- a/servers/physics_server_2d.cpp +++ b/servers/physics_server_2d.cpp @@ -972,7 +972,9 @@ String PhysicsServer2DManager::get_server_name(int p_id) { } PhysicsServer2D *PhysicsServer2DManager::new_default_server() { - ERR_FAIL_COND_V(default_server_id == -1, nullptr); + if (default_server_id == -1) { + return nullptr; + } Variant ret; Callable::CallError ce; physics_2d_servers[default_server_id].create_callback.callp(nullptr, 0, ret, ce); -- cgit v1.2.3