Interface DynamicVideoAssetConfigurationBase

VideoAssetの設定。

interface DynamicVideoAssetConfigurationBase {
    height: number;
    id: string;
    loop?: boolean;
    type: "video";
    uri: string;
    useRealSize?: boolean;
    width: number;
}

Hierarchy

Properties

height: number

高さ。

id: string

このアセットのIDとして用いる値。 この値はひとつのAssetManagerの中でユニークでなければならない。

loop?: boolean

ループ。

type: "video"

Assetの種類。

uri: string

Assetを表すファイルのURI。

useRealSize?: boolean

width,heightではなく実サイズを用いる指定。

width: number

幅。