ThreePipe
    Preparing search index...

    Interface ConstraintPropsTypes

    interface ConstraintPropsTypes {
        copy_position: {
            axis?: ("x" | "y" | "z")[];
            invert?: ("x" | "y" | "z")[];
        };
        copy_rotation: {
            axis?: ("x" | "y" | "z")[];
            invert?: ("x" | "y" | "z")[];
            order?: "XYZ" | "YXZ" | "ZXY" | "ZYX" | "YZX" | "XZY";
        };
        copy_scale: { axis?: ("x" | "y" | "z")[]; uniform?: boolean };
        copy_transforms: {};
        follow_path: { followCurve?: boolean; offset?: number };
        look_at: { upAxis?: "x" | "y" | "-x" | "-y" | "-z" | "z" };
    }
    Index

    Properties

    copy_position: { axis?: ("x" | "y" | "z")[]; invert?: ("x" | "y" | "z")[] }
    copy_rotation: {
        axis?: ("x" | "y" | "z")[];
        invert?: ("x" | "y" | "z")[];
        order?: "XYZ" | "YXZ" | "ZXY" | "ZYX" | "YZX" | "XZY";
    }
    copy_scale: { axis?: ("x" | "y" | "z")[]; uniform?: boolean }
    copy_transforms: {}
    follow_path: { followCurve?: boolean; offset?: number }
    look_at: { upAxis?: "x" | "y" | "-x" | "-y" | "-z" | "z" }