Akashic Engine
    Preparing search index...

    Interface DynamicImageAssetConfigurationBase

    ImageAssetの設定。

    interface DynamicImageAssetConfigurationBase {
        height: number;
        hint?: ImageAssetHint;
        id: string;
        slice?: CommonArea | CommonAreaShortened;
        type: "image";
        uri: string;
        width: number;
    }

    Hierarchy

    Index

    Properties

    height: number

    高さ。

    ヒント。akashic-engineが最適なパフォーマンスを発揮するための情報。

    id: string

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

    切り出す領域。 指定した場合、その部分だけの画像アセットとして扱う。

    type: "image"

    Assetの種類。

    uri: string

    Assetを表すファイルのURI。

    width: number

    幅。