@pixiv/three-vrm
    Preparing search index...

    A constraint that makes it look at a source object.

    interface AimConstraint {
        aimAxis:
            | "PositiveX"
            | "NegativeX"
            | "PositiveY"
            | "NegativeY"
            | "PositiveZ"
            | "NegativeZ";
        extensions?: { [name: string]: any };
        extras?: any;
        source: number;
        weight?: number;
    }
    Index

    Properties

    aimAxis:
        | "PositiveX"
        | "NegativeX"
        | "PositiveY"
        | "NegativeY"
        | "PositiveZ"
        | "NegativeZ"

    The aim axis of the constraint.

    extensions?: { [name: string]: any }
    extras?: any
    source: number

    The index of the node constrains the node.

    weight?: number

    The weight of the constraint.