summaryrefslogtreecommitdiffstats
path: root/servers/register_server_types.cpp
diff options
context:
space:
mode:
authorPouleyKetchoupp <pouleyketchoup@gmail.com>2021-10-18 12:24:30 -0700
committerPouleyKetchoupp <pouleyketchoup@gmail.com>2021-10-18 17:01:10 -0700
commitcc39dca9f7d960d1bb137f1dcbbf1da5cec8a505 (patch)
tree555c5721844576a85183de9f1c33cd19c671f73c /servers/register_server_types.cpp
parent5bb3dbbedd4f32974eef36ffc83bbe29abb65ab1 (diff)
downloadredot-engine-cc39dca9f7d960d1bb137f1dcbbf1da5cec8a505.tar.gz
Rename Godot Physics classes from *SW to Godot*
Also moved MT physics server wrappers to the main servers folder, since they don't have to be implementation specific.
Diffstat (limited to 'servers/register_server_types.cpp')
-rw-r--r--servers/register_server_types.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/servers/register_server_types.cpp b/servers/register_server_types.cpp
index 28cd8374c0..de64773026 100644
--- a/servers/register_server_types.cpp
+++ b/servers/register_server_types.cpp
@@ -59,12 +59,12 @@
#include "display_server.h"
#include "navigation_server_2d.h"
#include "navigation_server_3d.h"
-#include "physics_2d/physics_server_2d_sw.h"
-#include "physics_2d/physics_server_2d_wrap_mt.h"
-#include "physics_3d/physics_server_3d_sw.h"
-#include "physics_3d/physics_server_3d_wrap_mt.h"
+#include "physics_2d/godot_physics_server_2d.h"
+#include "physics_3d/godot_physics_server_3d.h"
#include "physics_server_2d.h"
+#include "physics_server_2d_wrap_mt.h"
#include "physics_server_3d.h"
+#include "physics_server_3d_wrap_mt.h"
#include "rendering/renderer_compositor.h"
#include "rendering/rendering_device.h"
#include "rendering/rendering_device_binds.h"
@@ -82,7 +82,7 @@ ShaderTypes *shader_types = nullptr;
PhysicsServer3D *_createGodotPhysics3DCallback() {
bool using_threads = GLOBAL_GET("physics/3d/run_on_thread");
- PhysicsServer3D *physics_server = memnew(PhysicsServer3DSW(using_threads));
+ PhysicsServer3D *physics_server = memnew(GodotPhysicsServer3D(using_threads));
return memnew(PhysicsServer3DWrapMT(physics_server, using_threads));
}
@@ -90,7 +90,7 @@ PhysicsServer3D *_createGodotPhysics3DCallback() {
PhysicsServer2D *_createGodotPhysics2DCallback() {
bool using_threads = GLOBAL_GET("physics/2d/run_on_thread");
- PhysicsServer2D *physics_server = memnew(PhysicsServer2DSW(using_threads));
+ PhysicsServer2D *physics_server = memnew(GodotPhysicsServer2D(using_threads));
return memnew(PhysicsServer2DWrapMT(physics_server, using_threads));
}