summaryrefslogtreecommitdiffstats
path: root/scene/3d/physics
diff options
context:
space:
mode:
authorkobewi <kobewi4e@gmail.com>2024-05-13 16:56:03 +0200
committerkobewi <kobewi4e@gmail.com>2024-05-13 23:41:07 +0200
commit413c11357d039a03a8dca440a01951a637ae936b (patch)
treee96f5b865d7158aa69fcf1e422ffafdb59dc2411 /scene/3d/physics
parentde196227e17126fa18716c4ed8e61108584116dc (diff)
downloadredot-engine-413c11357d039a03a8dca440a01951a637ae936b.tar.gz
Use Core/Scene stringnames consistently
Diffstat (limited to 'scene/3d/physics')
-rw-r--r--scene/3d/physics/area_3d.cpp1
-rw-r--r--scene/3d/physics/area_3d.h1
-rw-r--r--scene/3d/physics/collision_object_3d.cpp1
-rw-r--r--scene/3d/physics/joints/cone_twist_joint_3d.cpp2
-rw-r--r--scene/3d/physics/joints/joint_3d.cpp2
-rw-r--r--scene/3d/physics/joints/slider_joint_3d.cpp2
-rw-r--r--scene/3d/physics/rigid_body_3d.cpp2
7 files changed, 0 insertions, 11 deletions
diff --git a/scene/3d/physics/area_3d.cpp b/scene/3d/physics/area_3d.cpp
index 8cb316a2fe..be95512bea 100644
--- a/scene/3d/physics/area_3d.cpp
+++ b/scene/3d/physics/area_3d.cpp
@@ -30,7 +30,6 @@
#include "area_3d.h"
-#include "scene/scene_string_names.h"
#include "servers/audio_server.h"
void Area3D::set_gravity_space_override_mode(SpaceOverride p_mode) {
diff --git a/scene/3d/physics/area_3d.h b/scene/3d/physics/area_3d.h
index bb3694dff3..8848f9c23a 100644
--- a/scene/3d/physics/area_3d.h
+++ b/scene/3d/physics/area_3d.h
@@ -33,7 +33,6 @@
#include "core/templates/vset.h"
#include "scene/3d/physics/collision_object_3d.h"
-#include "scene/scene_string_names.h"
class Area3D : public CollisionObject3D {
GDCLASS(Area3D, CollisionObject3D);
diff --git a/scene/3d/physics/collision_object_3d.cpp b/scene/3d/physics/collision_object_3d.cpp
index 324620df4f..dddaf7eb4a 100644
--- a/scene/3d/physics/collision_object_3d.cpp
+++ b/scene/3d/physics/collision_object_3d.cpp
@@ -31,7 +31,6 @@
#include "collision_object_3d.h"
#include "scene/resources/3d/shape_3d.h"
-#include "scene/scene_string_names.h"
void CollisionObject3D::_notification(int p_what) {
switch (p_what) {
diff --git a/scene/3d/physics/joints/cone_twist_joint_3d.cpp b/scene/3d/physics/joints/cone_twist_joint_3d.cpp
index 404c074911..3da0cbee71 100644
--- a/scene/3d/physics/joints/cone_twist_joint_3d.cpp
+++ b/scene/3d/physics/joints/cone_twist_joint_3d.cpp
@@ -30,8 +30,6 @@
#include "cone_twist_joint_3d.h"
-#include "scene/scene_string_names.h"
-
void ConeTwistJoint3D::_bind_methods() {
ClassDB::bind_method(D_METHOD("set_param", "param", "value"), &ConeTwistJoint3D::set_param);
ClassDB::bind_method(D_METHOD("get_param", "param"), &ConeTwistJoint3D::get_param);
diff --git a/scene/3d/physics/joints/joint_3d.cpp b/scene/3d/physics/joints/joint_3d.cpp
index dac52a4dd8..8feec9e0e7 100644
--- a/scene/3d/physics/joints/joint_3d.cpp
+++ b/scene/3d/physics/joints/joint_3d.cpp
@@ -30,8 +30,6 @@
#include "joint_3d.h"
-#include "scene/scene_string_names.h"
-
void Joint3D::_disconnect_signals() {
Node *node_a = get_node_or_null(a);
PhysicsBody3D *body_a = Object::cast_to<PhysicsBody3D>(node_a);
diff --git a/scene/3d/physics/joints/slider_joint_3d.cpp b/scene/3d/physics/joints/slider_joint_3d.cpp
index 2e87ae1e83..df6b1cc045 100644
--- a/scene/3d/physics/joints/slider_joint_3d.cpp
+++ b/scene/3d/physics/joints/slider_joint_3d.cpp
@@ -30,8 +30,6 @@
#include "slider_joint_3d.h"
-#include "scene/scene_string_names.h"
-
void SliderJoint3D::_bind_methods() {
ClassDB::bind_method(D_METHOD("set_param", "param", "value"), &SliderJoint3D::set_param);
ClassDB::bind_method(D_METHOD("get_param", "param"), &SliderJoint3D::get_param);
diff --git a/scene/3d/physics/rigid_body_3d.cpp b/scene/3d/physics/rigid_body_3d.cpp
index a06680767c..5ea413f2c4 100644
--- a/scene/3d/physics/rigid_body_3d.cpp
+++ b/scene/3d/physics/rigid_body_3d.cpp
@@ -30,8 +30,6 @@
#include "rigid_body_3d.h"
-#include "scene/scene_string_names.h"
-
void RigidBody3D::_body_enter_tree(ObjectID p_id) {
Object *obj = ObjectDB::get_instance(p_id);
Node *node = Object::cast_to<Node>(obj);