summaryrefslogtreecommitdiff
path: root/doc/classes/Skeleton2D.xml
blob: 1ae39dfc079cd36e63ef8ca02482becec1d9f07c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<?xml version="1.0" encoding="UTF-8" ?>
<class name="Skeleton2D" inherits="Node2D" version="4.0">
	<brief_description>
		Skeleton for 2D characters and animated objects.
	</brief_description>
	<description>
		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.
	</description>
	<tutorials>
		<link title="2D skeletons">https://docs.godotengine.org/en/latest/tutorials/animation/2d_skeletons.html</link>
	</tutorials>
	<methods>
		<method name="execute_modifications">
			<return type="void">
			</return>
			<argument index="0" name="delta" type="float">
			</argument>
			<argument index="1" name="execution_mode" type="int">
			</argument>
			<description>
				Executes all the modifications on the [SkeletonModificationStack2D], if the Skeleton3D has one assigned.
			</description>
		</method>
		<method name="get_bone">
			<return type="Bone2D">
			</return>
			<argument index="0" name="idx" type="int">
			</argument>
			<description>
				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.
			</description>
		</method>
		<method name="get_bone_count" qualifiers="const">
			<return type="int">
			</return>
			<description>
				Returns the number of [Bone2D] nodes in the node hierarchy parented by Skeleton2D.
			</description>
		</method>
		<method name="get_bone_local_pose_override">
			<return type="Transform2D">
			</return>
			<argument index="0" name="bone_idx" type="int">
			</argument>
			<description>
				Returns the local pose override transform for [code]bone_idx[/code].
			</description>
		</method>
		<method name="get_modification_stack" qualifiers="const">
			<return type="SkeletonModificationStack2D">
			</return>
			<description>
				Returns the [SkeletonModificationStack2D] attached to this skeleton, if one exists.
			</description>
		</method>
		<method name="get_skeleton" qualifiers="const">
			<return type="RID">
			</return>
			<description>
				Returns the [RID] of a Skeleton2D instance.
			</description>
		</method>
		<method name="set_bone_local_pose_override">
			<return type="void">
			</return>
			<argument index="0" name="bone_idx" type="int">
			</argument>
			<argument index="1" name="override_pose" type="Transform2D">
			</argument>
			<argument index="2" name="strength" type="float">
			</argument>
			<argument index="3" name="persistent" type="bool">
			</argument>
			<description>
				Sets the local pose transform, [code]pose[/code], for the bone at [code]bone_idx[/code].
				[code]amount[/code] is the interpolation strength that will be used when applying the pose, and [code]persistent[/code] 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 [code]bone_idx[/code]!
			</description>
		</method>
		<method name="set_modification_stack">
			<return type="void">
			</return>
			<argument index="0" name="modification_stack" type="SkeletonModificationStack2D">
			</argument>
			<description>
				Sets the [SkeletonModificationStack2D] attached to this skeleton.
			</description>
		</method>
	</methods>
	<signals>
		<signal name="bone_setup_changed">
			<description>
				Emitted when the [Bone2D] setup attached to this skeletons changes. This is primarily used internally within the skeleton.
			</description>
		</signal>
	</signals>
	<constants>
	</constants>
</class>