Navigation
API > API/Plugins > API/Plugins/GeometryScriptingCore
| |
|
| Name |
EBonesToCopyFromSource |
| Type |
enum |
| Header File |
/Engine/Plugins/Runtime/GeometryScripting/Source/GeometryScriptingCore/Public/GeometryScript/MeshBoneWeightFunctions.h |
| Include Path |
#include "GeometryScript/MeshBoneWeightFunctions.h" |
Syntax
enum EBonesToCopyFromSource
{
AllBones = 0,
OnlyBoundAndParents = 1,
OnlyBoundAndRoot = 2,
}
Values
| Name |
Remarks |
| AllBones |
Copy all bones from the source mesh to the target, regardless of whether they're bound or not. |
| OnlyBoundAndParents |
Keep only bones that are actually bound to the target mesh, including all parent bones up to the root. |
| OnlyBoundAndRoot |
Keep only bones that are actually bound to the target mesh and the root bone. |