interface VRMExpressionBind {
    applyWeight(weight: number): void;
    clearAppliedWeight(): void;
}

Implemented by

Methods

  • Apply a weight to this bind. Applied weights will be accumulated until clearAppliedWeight is called.

    Parameters

    • weight: number

    Returns void

  • Clear previously applied weights.

    Returns void