diff options
author | Lyuma <xn.lyuma@gmail.com> | 2024-03-30 12:36:17 -0700 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-04-10 14:12:25 +0200 |
commit | 2854d0a7ca32ee9630c23eb24e3d027eeeea3eed (patch) | |
tree | 17e4b19f03e56b71ecef613809d1bf58fad9a2b7 /doc/classes/MeshInstance3D.xml | |
parent | 6c579280630715ff7da8310d405ef34194847294 (diff) | |
download | redot-engine-2854d0a7ca32ee9630c23eb24e3d027eeeea3eed.tar.gz |
Expose MeshInstance3D.get_skin_reference and add docs
Diffstat (limited to 'doc/classes/MeshInstance3D.xml')
-rw-r--r-- | doc/classes/MeshInstance3D.xml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/doc/classes/MeshInstance3D.xml b/doc/classes/MeshInstance3D.xml index f56b03bdc4..e5187cf7a1 100644 --- a/doc/classes/MeshInstance3D.xml +++ b/doc/classes/MeshInstance3D.xml @@ -70,6 +70,12 @@ Returns the value of the blend shape at the given [param blend_shape_idx]. Returns [code]0.0[/code] and produces an error if [member mesh] is [code]null[/code] or doesn't have a blend shape at that index. </description> </method> + <method name="get_skin_reference" qualifiers="const"> + <return type="SkinReference" /> + <description> + Returns the internal [SkinReference] containing the skeleton's [RID] attached to this RID. See also [method Resource.get_rid], [method SkinReference.get_skeleton], and [method RenderingServer.instance_attach_skeleton]. + </description> + </method> <method name="get_surface_override_material" qualifiers="const"> <return type="Material" /> <param index="0" name="surface" type="int" /> |