Navigation
API > API/Plugins > API/Plugins/MovieSceneAnimMixer > API/Plugins/MovieSceneAnimMixer/FAnimNextConvertRootMotionToWorl-
Enum specifying which conversions to perform
| Name | ESpaceConversions |
| Type | enum |
| Header File | /Engine/Plugins/Experimental/MovieSceneAnimMixer/Source/MovieSceneAnimMixer/Public/Systems/MovieSceneRootMotionSystem.h |
| Include Path | #include "Systems/MovieSceneRootMotionSystem.h" |
Syntax
enum ESpaceConversions
{
None = 0,
AnimationToWorld = 1 << 0,
TransformOriginToWorld = 1 << 1,
ComponentToActorRotation = 1 << 2,
WorldSpaceComponentTransformCompensation = 1 << 3,
RootTransformOffset = 1 << 4,
RootTransformOverride = 1 << 5,
}
Values
| Name | Remarks |
|---|---|
| None | |
| AnimationToWorld | Convert the root motion from animation space to world space |
| TransformOriginToWorld | Convert the root motion from transform origin space to world space (used when there is no transform track in Sequencer) |
| ComponentToActorRotation | Convert the root motion from component -> actor space using the inverse component rotation only |
| WorldSpaceComponentTransformCompensation | Compensate for component rotation and translation offsets when applying root motion in world space |
| RootTransformOffset | Apply RootBaseTransform as an offset around RootOffsetOrigin where Root = Root * RootBaseTransform |
| RootTransformOverride | Completely override the root transform with RootTransform |