Class SkeletonModification2DTwoBoneIK
A modification that rotates two bones using the law of cosines to reach the target.
- Inheritance
-
SkeletonModification2DTwoBoneIK
Remarks
This SkeletonModification2D uses an algorithm typically called TwoBoneIK. This algorithm works by leveraging the law of cosines and the lengths of the bones to figure out what rotation the bones currently have, and what rotation they need to make a complete triangle, where the first bone, the second bone, and the target form the three vertices of the triangle. Because the algorithm works by making a triangle, it can only operate on two bones.
TwoBoneIK is great for arms, legs, and really any joints that can be represented by just two bones that bend to reach a target. This solver is more lightweight than SkeletonModification2DFABRIK, but gives similar, natural looking results.
Properties
flip_bend_direction
If true
, the bones in the modification will bend outward as opposed to inwards when contracting. If false
, the bones will bend inwards when contracting.
var flip_bend_direction : bool = false
Property Value
Remarks
target_maximum_distance
The maximum distance the target can be at. If the target is farther than this distance, the modification will solve as if it's at this maximum distance. When set to 0
, the modification will solve without distance constraints.
var target_maximum_distance : float = 0.0
Property Value
Remarks
target_minimum_distance
The minimum distance the target can be at. If the target is closer than this distance, the modification will solve as if it's at this minimum distance. When set to 0
, the modification will solve without distance constraints.
var target_minimum_distance : float = 0.0
Property Value
Remarks
target_nodepath
The NodePath to the node that is the target for the TwoBoneIK modification. This node is what the modification will use when bending the Bone2D nodes.
var target_nodepath : NodePath = NodePath("")
Property Value
Remarks
Methods
get_joint_one_bone2d_node
Qualifiers: const
Returns the Bone2D node that is being used as the first bone in the TwoBoneIK modification.
NodePath get_joint_one_bone2d_node
get_joint_one_bone_idx
Qualifiers: const
Returns the index of the Bone2D node that is being used as the first bone in the TwoBoneIK modification.
int get_joint_one_bone_idx
get_joint_two_bone2d_node
Qualifiers: const
Returns the Bone2D node that is being used as the second bone in the TwoBoneIK modification.
NodePath get_joint_two_bone2d_node
get_joint_two_bone_idx
Qualifiers: const
Returns the index of the Bone2D node that is being used as the second bone in the TwoBoneIK modification.
int get_joint_two_bone_idx
set_joint_one_bone2d_node(NodePath)
Sets the Bone2D node that is being used as the first bone in the TwoBoneIK modification.
void set_joint_one_bone2d_node(NodePath bone2d_node)
Parameters
bone2d_node
NodePath
set_joint_one_bone_idx(int)
Sets the index of the Bone2D node that is being used as the first bone in the TwoBoneIK modification.
void set_joint_one_bone_idx(int bone_idx)
Parameters
bone_idx
int
set_joint_two_bone2d_node(NodePath)
Sets the Bone2D node that is being used as the second bone in the TwoBoneIK modification.
void set_joint_two_bone2d_node(NodePath bone2d_node)
Parameters
bone2d_node
NodePath
set_joint_two_bone_idx(int)
Sets the index of the Bone2D node that is being used as the second bone in the TwoBoneIK modification.
void set_joint_two_bone_idx(int bone_idx)
Parameters
bone_idx
int