summaryrefslogtreecommitdiffstats
path: root/servers/extensions
diff options
context:
space:
mode:
authorDragos Daian <daian.dragos@yahoo.com>2023-09-13 13:45:24 +0200
committerDragos Daian <daian.dragos@yahoo.com>2023-09-26 10:29:23 +0200
commit0fcfb07246dda4412eebf42394a9d0a30081bb16 (patch)
tree131b31432d7b21606bbf0d4ab2b8fb8caf4360ba /servers/extensions
parentc12d63556b5c1da03a00dd4c45c40e60bd8d68c2 (diff)
downloadredot-engine-0fcfb07246dda4412eebf42394a9d0a30081bb16.tar.gz
Update PinJoint2D API with angle limits and motor speed
add enabled methods for motor and angular limits use correct name to get joint update copyright
Diffstat (limited to 'servers/extensions')
-rw-r--r--servers/extensions/physics_server_2d_extension.cpp3
-rw-r--r--servers/extensions/physics_server_2d_extension.h3
2 files changed, 6 insertions, 0 deletions
diff --git a/servers/extensions/physics_server_2d_extension.cpp b/servers/extensions/physics_server_2d_extension.cpp
index 96f09a8b1c..f8e78d655f 100644
--- a/servers/extensions/physics_server_2d_extension.cpp
+++ b/servers/extensions/physics_server_2d_extension.cpp
@@ -316,6 +316,9 @@ void PhysicsServer2DExtension::_bind_methods() {
GDVIRTUAL_BIND(_joint_make_groove, "joint", "a_groove1", "a_groove2", "b_anchor", "body_a", "body_b");
GDVIRTUAL_BIND(_joint_make_damped_spring, "joint", "anchor_a", "anchor_b", "body_a", "body_b");
+ GDVIRTUAL_BIND(_pin_joint_set_flag, "joint", "flag", "enabled");
+ GDVIRTUAL_BIND(_pin_joint_get_flag, "joint", "flag");
+
GDVIRTUAL_BIND(_pin_joint_set_param, "joint", "param", "value");
GDVIRTUAL_BIND(_pin_joint_get_param, "joint", "param");
diff --git a/servers/extensions/physics_server_2d_extension.h b/servers/extensions/physics_server_2d_extension.h
index 6ddbb98766..6e0277a7c6 100644
--- a/servers/extensions/physics_server_2d_extension.h
+++ b/servers/extensions/physics_server_2d_extension.h
@@ -419,6 +419,9 @@ public:
EXBIND6(joint_make_groove, RID, const Vector2 &, const Vector2 &, const Vector2 &, RID, RID)
EXBIND5(joint_make_damped_spring, RID, const Vector2 &, const Vector2 &, RID, RID)
+ EXBIND3(pin_joint_set_flag, RID, PinJointFlag, bool)
+ EXBIND2RC(bool, pin_joint_get_flag, RID, PinJointFlag)
+
EXBIND3(pin_joint_set_param, RID, PinJointParam, real_t)
EXBIND2RC(real_t, pin_joint_get_param, RID, PinJointParam)