Interface ViewConfig

interface ViewConfig {
    animation?: string;
    cutouts: ICutout[];
    feedbackAnimationStyle?: FeedbackAnimationStyle;
    feedbackStyle?: string;
    outerAlpha?: number;
    outerColor?: string;
    uiFeedback?: {
        dynamic?: UiFeedbackConfig;
        static?: {
            instructionText: string;
        };
    };
}

Properties

animation?: string
cutouts: ICutout[]
feedbackAnimationStyle?: FeedbackAnimationStyle

Feedback animation style. Defaults to a 'BLINK_ANIMATION' animation.

feedbackStyle?: string
outerAlpha?: number
outerColor?: string
uiFeedback?: {
    dynamic?: UiFeedbackConfig;
    static?: {
        instructionText: string;
    };
}