A modification that jiggles bones as they move towards a target.
</brief_description>
<description>
This modification moves a series of bones, typically called a bone chain, towards a target. What makes this modification special is that it calculates the velocity and acceleration for each bone in the bone chain, and runs a very light physics-like calculation using the inputted values. This allows the bones to overshoot the target and "jiggle" around. It can be configured to act more like a spring, or sway around like cloth might.
This modification is useful for adding additional motion to things like hair, the edges of clothing, and more. It has several settings to that allow control over how the joint moves when the target moves.
[b]Note:[/b] The Jiggle modifier has [code]jiggle_joints[/code], which are the data objects that hold the data for each joint in the Jiggle chain. This is different from a bone! Jiggle joints hold the data needed for each bone in the bone chain used by the Jiggle modification.
Returns whether the Jiggle modifier is taking physics colliders into account when solving.
</description>
</method>
<methodname="set_collision_mask">
<returntype="void"/>
<argumentindex="0"name="mask"type="int"/>
<description>
Sets the collision mask that the Jiggle modifier takes into account when performing physics calculations.
</description>
</method>
<methodname="set_jiggle_joint_bone_index">
<returntype="void"/>
<argumentindex="0"name="joint_idx"type="int"/>
<argumentindex="1"name="bone_idx"type="int"/>
<description>
Sets the bone index, [code]bone_index[/code], of the Jiggle joint at [code]joint_idx[/code]. When possible, this will also update the [code]bone_name[/code] of the Jiggle joint based on data provided by the [Skeleton3D].
</description>
</method>
<methodname="set_jiggle_joint_bone_name">
<returntype="void"/>
<argumentindex="0"name="joint_idx"type="int"/>
<argumentindex="1"name="name"type="String"/>
<description>
Sets the bone name, [code]bone_name[/code], of the Jiggle joint at [code]joint_idx[/code]. When possible, this will also update the [code]bone_index[/code] of the Jiggle joint based on data provided by the [Skeleton3D].
</description>
</method>
<methodname="set_jiggle_joint_damping">
<returntype="void"/>
<argumentindex="0"name="joint_idx"type="int"/>
<argumentindex="1"name="damping"type="float"/>
<description>
Sets the amount of dampening of the Jiggle joint at [code]joint_idx[/code].
</description>
</method>
<methodname="set_jiggle_joint_gravity">
<returntype="void"/>
<argumentindex="0"name="joint_idx"type="int"/>
<argumentindex="1"name="gravity"type="Vector3"/>
<description>
Sets the gravity vector of the Jiggle joint at [code]joint_idx[/code].
</description>
</method>
<methodname="set_jiggle_joint_mass">
<returntype="void"/>
<argumentindex="0"name="joint_idx"type="int"/>
<argumentindex="1"name="mass"type="float"/>
<description>
Sets the of mass of the Jiggle joint at [code]joint_idx[/code].
</description>
</method>
<methodname="set_jiggle_joint_override">
<returntype="void"/>
<argumentindex="0"name="joint_idx"type="int"/>
<argumentindex="1"name="override"type="bool"/>
<description>
Sets whether the Jiggle joint at [code]joint_idx[/code] should override the default Jiggle joint settings. Setting this to true will make the joint use its own settings rather than the default ones attached to the modification.
</description>
</method>
<methodname="set_jiggle_joint_roll">
<returntype="void"/>
<argumentindex="0"name="joint_idx"type="int"/>
<argumentindex="1"name="roll"type="float"/>
<description>
Sets the amount of roll/twist on the bone the Jiggle joint is attached to.
</description>
</method>
<methodname="set_jiggle_joint_stiffness">
<returntype="void"/>
<argumentindex="0"name="joint_idx"type="int"/>
<argumentindex="1"name="stiffness"type="float"/>
<description>
Sets the of stiffness of the Jiggle joint at [code]joint_idx[/code].
</description>
</method>
<methodname="set_jiggle_joint_use_gravity">
<returntype="void"/>
<argumentindex="0"name="joint_idx"type="int"/>
<argumentindex="1"name="use_gravity"type="bool"/>
<description>
Sets whether the Jiggle joint at [code]joint_idx[/code] should use gravity.
When [code]true[/code], the Jiggle modifier will use raycasting to prevent the Jiggle joints from rotating themselves into collision objects when solving.
The default amount of dampening applied to the Jiggle joints, if they are not overridden. Higher values lead to more of the calculated velocity being applied.
The default amount of stiffness assigned to the Jiggle joints, if they are not overridden. Higher values act more like springs, quickly moving into the correct position.