2018-05-12 09:38:00 +02:00
<?xml version="1.0" encoding="UTF-8" ?>
2020-01-26 16:01:49 +01:00
<class name= "Skeleton2D" inherits= "Node2D" version= "3.2" >
2018-05-12 09:38:00 +02:00
<brief_description >
2019-10-10 05:10:28 +02:00
Skeleton for 2D characters and animated objects.
2018-05-12 09:38:00 +02:00
</brief_description>
<description >
2020-02-14 17:51:56 +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.
2018-05-12 09:38:00 +02:00
</description>
<tutorials >
2020-01-29 02:48:10 +01:00
<link > https://docs.godotengine.org/en/latest/tutorials/animation/2d_skeletons.html</link>
2018-05-12 09:38:00 +02:00
</tutorials>
<methods >
<method name= "get_bone" >
<return type= "Bone2D" >
</return>
2018-08-21 00:35:30 +02:00
<argument index= "0" name= "idx" type= "int" >
2018-05-12 09:38:00 +02:00
</argument>
<description >
2020-02-05 13:19:27 +01:00
Returns a [Bone2D] from the node hierarchy parented by Skeleton2D. The object to return is identified by the parameter [code]idx[/code]. 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" >
</return>
<description >
2020-02-05 13:19:27 +01:00
Returns the number of [Bone2D] nodes in the node hierarchy parented by Skeleton2D.
2018-05-12 09:38:00 +02:00
</description>
</method>
<method name= "get_skeleton" qualifiers= "const" >
<return type= "RID" >
</return>
<description >
2020-02-05 13:19:27 +01:00
Returns the [RID] of a Skeleton2D instance.
2018-05-12 09:38:00 +02:00
</description>
</method>
</methods>
2019-02-18 09:35:10 +01:00
<signals >
<signal name= "bone_setup_changed" >
<description >
</description>
</signal>
</signals>
2018-05-12 09:38:00 +02:00
<constants >
</constants>
</class>