Navigation
API > API/Runtime > API/Runtime/Engine
This enum defines how you'd like to update bones to physics world. If bone is simulating, you don't have to waste time on updating bone transform from kinematic. But also sometimes you don't like fixed bones to be updated by animation data.
| Name | EKinematicBonesUpdateToPhysics::Type |
| Type | enum |
| Header File | /Engine/Source/Runtime/Engine/Classes/Components/SkeletalMeshComponent.h |
| Include Path | #include "Components/SkeletalMeshComponent.h" |
Syntax
namespace EKinematicBonesUpdateToPhysics
{
enum Type
{
SkipSimulatingBones,
SkipAllBones,
}
}
Values
| Name | Remarks |
|---|---|
| SkipSimulatingBones | Update any bones that are not simulating. |
| SkipAllBones | Skip physics update from kinematic changes. |