2017-09-12 22:42:36 +02:00
<?xml version="1.0" encoding="UTF-8" ?>
2023-07-06 10:08:05 +02:00
<class name= "PinJoint3D" inherits= "Joint3D" xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation= "../class.xsd" >
2017-09-12 22:42:36 +02:00
<brief_description >
2023-04-28 22:59:03 +02:00
A physics joint that attaches two 3D physics bodies at a single point, allowing them to freely rotate.
2017-09-12 22:42:36 +02:00
</brief_description>
<description >
2023-07-22 11:29:44 +02:00
A physics joint that attaches two 3D physics bodies at a single point, allowing them to freely rotate. For example, a [RigidBody3D] can be attached to a [StaticBody3D] to create a pendulum or a seesaw.
2017-09-12 22:42:36 +02:00
</description>
<tutorials >
</tutorials>
<methods >
2019-06-27 16:10:09 +02:00
<method name= "get_param" qualifiers= "const" >
2021-07-30 15:28:05 +02:00
<return type= "float" />
2022-08-06 20:11:48 +02:00
<param index= "0" name= "param" type= "int" enum= "PinJoint3D.Param" />
2019-06-27 16:10:09 +02:00
<description >
2020-03-03 19:21:21 +01:00
Returns the value of the specified parameter.
2019-06-27 16:10:09 +02:00
</description>
</method>
<method name= "set_param" >
2021-07-30 15:28:05 +02:00
<return type= "void" />
2022-08-06 20:11:48 +02:00
<param index= "0" name= "param" type= "int" enum= "PinJoint3D.Param" />
<param index= "1" name= "value" type= "float" />
2019-06-27 16:10:09 +02:00
<description >
2020-03-03 19:21:21 +01:00
Sets the value of the specified parameter.
2019-06-27 16:10:09 +02:00
</description>
</method>
2017-09-12 22:42:36 +02:00
</methods>
<members >
2019-06-29 12:38:01 +02:00
<member name= "params/bias" type= "float" setter= "set_param" getter= "get_param" default= "0.3" >
2019-06-22 01:04:47 +02:00
The force with which the pinned objects stay in positional relation to each other. The higher, the stronger.
2017-09-12 22:42:36 +02:00
</member>
2019-06-29 12:38:01 +02:00
<member name= "params/damping" type= "float" setter= "set_param" getter= "get_param" default= "1.0" >
2019-06-22 01:04:47 +02:00
The force with which the pinned objects stay in velocity relation to each other. The higher, the stronger.
2017-09-12 22:42:36 +02:00
</member>
2019-06-29 12:38:01 +02:00
<member name= "params/impulse_clamp" type= "float" setter= "set_param" getter= "get_param" default= "0.0" >
2020-03-30 18:22:57 +02:00
If above 0, this value is the maximum value for an impulse that this Joint3D produces.
2017-09-12 22:42:36 +02:00
</member>
</members>
<constants >
2017-11-24 23:16:30 +01:00
<constant name= "PARAM_BIAS" value= "0" enum= "Param" >
2019-06-22 01:04:47 +02:00
The force with which the pinned objects stay in positional relation to each other. The higher, the stronger.
2017-09-12 22:42:36 +02:00
</constant>
2017-11-24 23:16:30 +01:00
<constant name= "PARAM_DAMPING" value= "1" enum= "Param" >
2019-06-22 01:04:47 +02:00
The force with which the pinned objects stay in velocity relation to each other. The higher, the stronger.
2017-09-12 22:42:36 +02:00
</constant>
2017-11-24 23:16:30 +01:00
<constant name= "PARAM_IMPULSE_CLAMP" value= "2" enum= "Param" >
2020-03-30 18:22:57 +02:00
If above 0, this value is the maximum value for an impulse that this Joint3D produces.
2017-09-12 22:42:36 +02:00
</constant>
</constants>
</class>