Files
engine/doc/classes/Skeleton2D.xml
T

82 lines
3.7 KiB
XML
Raw Normal View History

2018-05-12 09:38:00 +02:00
<?xml version="1.0" encoding="UTF-8" ?>
2022-02-14 14:18:53 +01:00
<class name="Skeleton2D" inherits="Node2D" version="4.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../class.xsd">
2018-05-12 09:38:00 +02:00
<brief_description>
2019-10-10 00:10:28 -03:00
Skeleton for 2D characters and animated objects.
2018-05-12 09:38:00 +02:00
</brief_description>
<description>
2020-02-09 00:34:08 +01:00
Skeleton2D parents a hierarchy of [Bone2D] objects. It is a requirement of [Bone2D]. Skeleton2D holds a reference to the rest pose of its children and acts as a single point of access to its bones.
2021-08-26 19:43:25 +05:45
To setup different types of inverse kinematics for the given Skeleton2D, a [SkeletonModificationStack2D] should be created. They can be applied by creating the desired number of modifications, which can be done by increasing [member SkeletonModificationStack2D.modification_count].
2018-05-12 09:38:00 +02:00
</description>
<tutorials>
<link title="2D skeletons">$DOCS_URL/tutorials/animation/2d_skeletons.html</link>
2018-05-12 09:38:00 +02:00
</tutorials>
<methods>
2020-08-03 14:02:24 -04:00
<method name="execute_modifications">
<return type="void" />
<param index="0" name="delta" type="float" />
<param index="1" name="execution_mode" type="int" />
2020-08-03 14:02:24 -04:00
<description>
Executes all the modifications on the [SkeletonModificationStack2D], if the Skeleton3D has one assigned.
</description>
</method>
2018-05-12 09:38:00 +02:00
<method name="get_bone">
<return type="Bone2D" />
<param index="0" name="idx" type="int" />
2018-05-12 09:38:00 +02:00
<description>
Returns a [Bone2D] from the node hierarchy parented by Skeleton2D. The object to return is identified by the parameter [param idx]. Bones are indexed by descending the node hierarchy from top to bottom, adding the children of each branch before moving to the next sibling.
2018-05-12 09:38:00 +02:00
</description>
</method>
<method name="get_bone_count" qualifiers="const">
<return type="int" />
2018-05-12 09:38:00 +02:00
<description>
2020-02-05 07:19:27 -05:00
Returns the number of [Bone2D] nodes in the node hierarchy parented by Skeleton2D.
2018-05-12 09:38:00 +02:00
</description>
</method>
2020-08-03 14:02:24 -04:00
<method name="get_bone_local_pose_override">
<return type="Transform2D" />
<param index="0" name="bone_idx" type="int" />
2020-08-03 14:02:24 -04:00
<description>
Returns the local pose override transform for [param bone_idx].
2020-08-03 14:02:24 -04:00
</description>
</method>
<method name="get_modification_stack" qualifiers="const">
<return type="SkeletonModificationStack2D" />
2020-08-03 14:02:24 -04:00
<description>
Returns the [SkeletonModificationStack2D] attached to this skeleton, if one exists.
</description>
</method>
2018-05-12 09:38:00 +02:00
<method name="get_skeleton" qualifiers="const">
<return type="RID" />
2018-05-12 09:38:00 +02:00
<description>
2020-02-05 07:19:27 -05:00
Returns the [RID] of a Skeleton2D instance.
2018-05-12 09:38:00 +02:00
</description>
</method>
2020-08-03 14:02:24 -04:00
<method name="set_bone_local_pose_override">
<return type="void" />
<param index="0" name="bone_idx" type="int" />
<param index="1" name="override_pose" type="Transform2D" />
<param index="2" name="strength" type="float" />
<param index="3" name="persistent" type="bool" />
2020-08-03 14:02:24 -04:00
<description>
Sets the local pose transform, [param override_pose], for the bone at [param bone_idx].
[param strength] is the interpolation strength that will be used when applying the pose, and [param persistent] determines if the applied pose will remain.
[b]Note:[/b] The pose transform needs to be a local transform relative to the [Bone2D] node at [param bone_idx]!
2020-08-03 14:02:24 -04:00
</description>
</method>
<method name="set_modification_stack">
<return type="void" />
<param index="0" name="modification_stack" type="SkeletonModificationStack2D" />
2020-08-03 14:02:24 -04:00
<description>
Sets the [SkeletonModificationStack2D] attached to this skeleton.
</description>
</method>
2018-05-12 09:38:00 +02:00
</methods>
2019-02-18 09:35:10 +01:00
<signals>
<signal name="bone_setup_changed">
<description>
2020-08-03 14:02:24 -04:00
Emitted when the [Bone2D] setup attached to this skeletons changes. This is primarily used internally within the skeleton.
2019-02-18 09:35:10 +01:00
</description>
</signal>
</signals>
2018-05-12 09:38:00 +02:00
</class>