Table of Contents

Interface IVirtualizeMotion

Namespace
nadena.dev.ndmf.animator

Implement this interface to request that the referenced motion be converted to a virtual motion when the @"VirtualControllerContext" is activated. Internally, VirtualControllerContext will generate a single-state animator controller to contain the IVirtualizeMotion motion. To access the VirtualMotion, use the @"VirtualControllerContext#GetVirtualizedMotion" method. As with @"IVirtualizeAnimatorController", when the VirtualControllerContext is deactivated, the new motion will be written back to its original component.

public interface IVirtualizeMotion

Properties

Motion

The motion to virtualize.

Motion Motion { get; set; }

Property Value

Motion

Methods

GetMotionBasePath(object, bool)

Returns the base path prefix that should be applied to curves in the motion. If clearPath is set to true, this function should r\eturn the current path, then clear it (set it to an empty string). When the @"VirtualControllerContext" is activated, this function will be invoked with clearPath set to true, and the resulting path prefix will be used to prefix all curves in the motion.

string GetMotionBasePath(object ndmfBuildContext, bool clearPath = true)

Parameters

ndmfBuildContext object

The @"BuildContext" object for the current build (passed as object due to runtime assembly limitations)

clearPath bool

True to reset the path to the empty string

Returns

string

The path prefix (if an empty string is returned, no curves will be modified)