2017-09-12 22:42:36 +02:00
|
|
|
<?xml version="1.0" encoding="UTF-8" ?>
|
|
|
|
<class name="ConeTwistJoint" inherits="Joint" category="Core" version="3.0.alpha.custom_build">
|
|
|
|
<brief_description>
|
2017-10-14 12:19:03 +02:00
|
|
|
A twist joint between two 3D bodies
|
2017-09-12 22:42:36 +02:00
|
|
|
</brief_description>
|
|
|
|
<description>
|
2017-10-14 12:19:03 +02:00
|
|
|
The joint can rotate the bodies across an axis defined by the local x-axes of the [Joint].
|
|
|
|
The twist axis is initiated as the x-axis of the [Joint].
|
|
|
|
Once the Bodies swing, the twist axis is calculated as the middle of the x-axes of the Joint in the local space of the two Bodies.
|
2017-09-12 22:42:36 +02:00
|
|
|
</description>
|
|
|
|
<tutorials>
|
|
|
|
</tutorials>
|
|
|
|
<demos>
|
|
|
|
</demos>
|
|
|
|
<methods>
|
|
|
|
<method name="get_param" qualifiers="const">
|
|
|
|
<return type="float">
|
|
|
|
</return>
|
|
|
|
<argument index="0" name="param" type="int" enum="ConeTwistJoint.Param">
|
|
|
|
</argument>
|
|
|
|
<description>
|
|
|
|
</description>
|
|
|
|
</method>
|
|
|
|
<method name="set_param">
|
|
|
|
<return type="void">
|
|
|
|
</return>
|
|
|
|
<argument index="0" name="param" type="int" enum="ConeTwistJoint.Param">
|
|
|
|
</argument>
|
|
|
|
<argument index="1" name="value" type="float">
|
|
|
|
</argument>
|
|
|
|
<description>
|
|
|
|
</description>
|
|
|
|
</method>
|
|
|
|
</methods>
|
|
|
|
<members>
|
2017-09-13 08:49:40 +02:00
|
|
|
<member name="bias" type="float" setter="set_param" getter="get_param">
|
2017-10-14 12:19:03 +02:00
|
|
|
The speed with which the swing or twist will take place.
|
|
|
|
The higher, the faster.
|
2017-09-12 22:42:36 +02:00
|
|
|
</member>
|
2017-09-13 08:49:40 +02:00
|
|
|
<member name="relaxation" type="float" setter="set_param" getter="get_param">
|
2017-10-14 12:19:03 +02:00
|
|
|
Defines, how fast the swing- and twist-speed-difference on both sides gets synced.
|
2017-09-12 22:42:36 +02:00
|
|
|
</member>
|
2017-09-13 08:49:40 +02:00
|
|
|
<member name="softness" type="float" setter="set_param" getter="get_param">
|
2017-10-14 12:19:03 +02:00
|
|
|
The ease with which the joint starts to twist. If it's too low, it takes more force to start twisting the joint.
|
2017-09-12 22:42:36 +02:00
|
|
|
</member>
|
2017-09-13 08:49:40 +02:00
|
|
|
<member name="swing_span" type="float" setter="_set_swing_span" getter="_get_swing_span">
|
2017-10-14 12:19:03 +02:00
|
|
|
Swing is rotation from side to side, around the axis perpendicular to the twist axis.
|
|
|
|
The swing span defines, how much rotation will not get corrected allong the swing axis.
|
2017-10-22 12:56:11 +02:00
|
|
|
Could be defined as looseness in the [code]ConeTwistJoint[/code].
|
2017-10-14 12:19:03 +02:00
|
|
|
If below 0.05, this behaviour is locked. Default value: [code]PI/4[/code].
|
2017-09-12 22:42:36 +02:00
|
|
|
</member>
|
2017-09-13 08:49:40 +02:00
|
|
|
<member name="twist_span" type="float" setter="_set_twist_span" getter="_get_twist_span">
|
2017-10-14 12:19:03 +02:00
|
|
|
Twist is the rotation around the twist axis, this value defined how far the joint can twist.
|
|
|
|
Twist is locked if below 0.05.
|
2017-09-12 22:42:36 +02:00
|
|
|
</member>
|
|
|
|
</members>
|
|
|
|
<constants>
|
|
|
|
<constant name="PARAM_SWING_SPAN" value="0">
|
2017-10-14 12:19:03 +02:00
|
|
|
Swing is rotation from side to side, around the axis perpendicular to the twist axis.
|
|
|
|
The swing span defines, how much rotation will not get corrected allong the swing axis.
|
2017-10-22 12:56:11 +02:00
|
|
|
Could be defined as looseness in the [code]ConeTwistJoint[/code].
|
2017-10-14 12:19:03 +02:00
|
|
|
If below 0.05, this behaviour is locked. Default value: [code]PI/4[/code].
|
2017-09-12 22:42:36 +02:00
|
|
|
</constant>
|
|
|
|
<constant name="PARAM_TWIST_SPAN" value="1">
|
2017-10-14 12:19:03 +02:00
|
|
|
Twist is the rotation around the twist axis, this value defined how far the joint can twist.
|
|
|
|
Twist is locked if below 0.05.
|
2017-09-12 22:42:36 +02:00
|
|
|
</constant>
|
|
|
|
<constant name="PARAM_BIAS" value="2">
|
2017-10-14 12:19:03 +02:00
|
|
|
The speed with which the swing or twist will take place.
|
|
|
|
The higher, the faster.
|
2017-09-12 22:42:36 +02:00
|
|
|
</constant>
|
|
|
|
<constant name="PARAM_SOFTNESS" value="3">
|
2017-10-14 12:19:03 +02:00
|
|
|
The ease with which the joint starts to twist. If it's too low, it takes more force to start twisting the joint.
|
2017-09-12 22:42:36 +02:00
|
|
|
</constant>
|
|
|
|
<constant name="PARAM_RELAXATION" value="4">
|
2017-10-14 12:19:03 +02:00
|
|
|
Defines, how fast the swing- and twist-speed-difference on both sides gets synced.
|
2017-09-12 22:42:36 +02:00
|
|
|
</constant>
|
|
|
|
<constant name="PARAM_MAX" value="5">
|
2017-10-14 12:19:03 +02:00
|
|
|
End flag of PARAM_* constants, used internally.
|
2017-09-12 22:42:36 +02:00
|
|
|
</constant>
|
|
|
|
</constants>
|
|
|
|
</class>
|