Interface SceneRequestAssetsParameterObject

Scene#requestAssets() の引数に渡すことができるパラメータ。

interface SceneRequestAssetsParameterObject {
    assetIds: (
        | string
        | VectorImageAssetGenerationConfiguration
        | DynamicAssetConfiguration
    )[];
    notifyErrorOnCallback?: boolean;
}

Properties

assetIds: (
    | string
    | VectorImageAssetGenerationConfiguration
    | DynamicAssetConfiguration
)[]
notifyErrorOnCallback?: boolean

アセットの読込みに失敗した際にコールバックを実行するかどうか。

false