summaryrefslogtreecommitdiffstats
path: root/doc/classes/MeshInstance3D.xml
diff options
context:
space:
mode:
authorsmix8 <52464204+smix8@users.noreply.github.com>2023-11-17 14:41:19 +0100
committersmix8 <52464204+smix8@users.noreply.github.com>2024-09-03 22:16:05 +0200
commita99a1699aa039f8120093518ecaaee633648afff (patch)
treed83b0bf865408c27f0ac61119f1c951f4c527b85 /doc/classes/MeshInstance3D.xml
parente2dd56bea7a1aa13fe74fd6eac049e4cbde0434c (diff)
downloadredot-engine-a99a1699aa039f8120093518ecaaee633648afff.tar.gz
Add option to bake a mesh from animated skeleton pose
Adds option to bake a mesh from animated skeleton pose.
Diffstat (limited to 'doc/classes/MeshInstance3D.xml')
-rw-r--r--doc/classes/MeshInstance3D.xml8
1 files changed, 8 insertions, 0 deletions
diff --git a/doc/classes/MeshInstance3D.xml b/doc/classes/MeshInstance3D.xml
index abbb4c4eeb..d8e2c43566 100644
--- a/doc/classes/MeshInstance3D.xml
+++ b/doc/classes/MeshInstance3D.xml
@@ -21,6 +21,14 @@
[b]Performance:[/b] [Mesh] data needs to be received from the GPU, stalling the [RenderingServer] in the process.
</description>
</method>
+ <method name="bake_mesh_from_current_skeleton_pose">
+ <return type="ArrayMesh" />
+ <param index="0" name="existing" type="ArrayMesh" default="null" />
+ <description>
+ Takes a snapshot of the current animated skeleton pose of the skinned mesh and bakes it to the provided [param existing] mesh. If no [param existing] mesh is provided a new [ArrayMesh] is created, baked, and returned. Requires a skeleton with a registered skin to work. Blendshapes are ignored. Mesh surface materials are not copied.
+ [b]Performance:[/b] [Mesh] data needs to be retrieved from the GPU, stalling the [RenderingServer] in the process.
+ </description>
+ </method>
<method name="create_convex_collision">
<return type="void" />
<param index="0" name="clean" type="bool" default="true" />