Interface VideoRendererOptions

interface VideoRendererOptions {
    action: "pause" | "play" | "stop";
    fixedToTimeScale: boolean;
    flipHorizontally: boolean;
    flipVertically: boolean;
    height: number;
    layer: string;
    loop: boolean;
    maskColor: string;
    maskColorMix: number;
    offset: Vector2;
    opacity: number;
    rotation: number;
    slice: Slice;
    tintColor: string;
    video: HTMLVideoElement;
    volume: number;
    width: number;
}

Properties

action: "pause" | "play" | "stop"
fixedToTimeScale: boolean
flipHorizontally: boolean
flipVertically: boolean
height: number
layer: string
loop: boolean
maskColor: string
maskColorMix: number
offset: Vector2
opacity: number
rotation: number
slice: Slice
tintColor: string
video: HTMLVideoElement
volume: number
width: number