From 6bc313c765997bde5d46d9062594a47e955e84ea Mon Sep 17 00:00:00 2001 From: Ricardo Buring Date: Thu, 29 Dec 2022 17:31:22 +0100 Subject: [PATCH] Bind setter and getter for pin joint parameters in PhysicsServer2D --- doc/classes/PhysicsServer2D.xml | 17 +++++++++++++++++ servers/physics_server_2d.cpp | 3 +++ 2 files changed, 20 insertions(+) diff --git a/doc/classes/PhysicsServer2D.xml b/doc/classes/PhysicsServer2D.xml index 18ac8a11dfc0..b20e17f63ff7 100644 --- a/doc/classes/PhysicsServer2D.xml +++ b/doc/classes/PhysicsServer2D.xml @@ -790,6 +790,23 @@ Sets a joint parameter. See [enum JointParam] for a list of available parameters. + + + + + + Returns the value of a pin joint parameter. See [enum PinJointParam] for a list of available parameters. + + + + + + + + + Sets a pin joint parameter. See [enum PinJointParam] for a list of available parameters. + + diff --git a/servers/physics_server_2d.cpp b/servers/physics_server_2d.cpp index c5a93cc390bd..83c2f4c20b7a 100644 --- a/servers/physics_server_2d.cpp +++ b/servers/physics_server_2d.cpp @@ -769,6 +769,9 @@ void PhysicsServer2D::_bind_methods() { ClassDB::bind_method(D_METHOD("joint_make_groove", "joint", "groove1_a", "groove2_a", "anchor_b", "body_a", "body_b"), &PhysicsServer2D::joint_make_groove, DEFVAL(RID()), DEFVAL(RID())); ClassDB::bind_method(D_METHOD("joint_make_damped_spring", "joint", "anchor_a", "anchor_b", "body_a", "body_b"), &PhysicsServer2D::joint_make_damped_spring, DEFVAL(RID())); + ClassDB::bind_method(D_METHOD("pin_joint_set_param", "joint", "param", "value"), &PhysicsServer2D::pin_joint_set_param); + ClassDB::bind_method(D_METHOD("pin_joint_get_param", "joint", "param"), &PhysicsServer2D::pin_joint_get_param); + ClassDB::bind_method(D_METHOD("damped_spring_joint_set_param", "joint", "param", "value"), &PhysicsServer2D::damped_spring_joint_set_param); ClassDB::bind_method(D_METHOD("damped_spring_joint_get_param", "joint", "param"), &PhysicsServer2D::damped_spring_joint_get_param);