Akashic Engine
    Preparing search index...

    Interface TextAssetConfigurationBase

    TextAssetの設定。

    interface TextAssetConfigurationBase {
        global?: boolean;
        path: string;
        type: "text";
        virtualPath?: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    global?: boolean

    グローバルアセットか否か。省略された場合、偽。 この値が真であるアセットは、ゲームコンテンツから常に Game#assets 経由で参照できる。Scene のコンストラクタで利用を宣言する必要がない。

    path: string

    Assetを表すファイルへの絶対パス。

    type: "text"

    Assetの種類。

    virtualPath?: string

    Assetを表すファイルのrequire解決用の仮想ツリーにおけるパス。 省略するとエンジンにより自動的に設定される。