Interface AsukaParametricTransformRule

Apply offsets/rotations/scales relative to the original imported transform. Rotation expressions are expressed in degrees. Scale expressions are multipliers.

interface AsukaParametricTransformRule {
    id?: string;
    metadata?: Record<string, unknown>;
    positionOffset?: AsukaParametricVectorExpression;
    rotationOffset?: AsukaParametricVectorExpression;
    scale?: AsukaParametricVectorExpression;
    target: string;
    type: "transform";
    when?: AsukaParametricValue;
}

Hierarchy (view full)

Properties

id?: string
metadata?: Record<string, unknown>
target: string
type