Akashic Engine
    Preparing search index...

    Interface DynamicAudioAssetConfigurationBase

    AudioAssetの設定。

    interface DynamicAudioAssetConfigurationBase {
        duration: number;
        hint?: AudioAssetHint;
        id: string;
        loop?: boolean;
        offset?: number;
        systemId: "music" | "sound";
        type: "audio";
        uri: string;
    }

    Hierarchy

    Index

    Properties

    duration: number

    再生時間。単位はミリ秒。

    ヒント。

    id: string

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

    loop?: boolean

    ループ。

    offset?: number

    再生開始位置。単位はミリ秒。

    systemId: "music" | "sound"

    AudioAssetのsystem指定。

    type: "audio"

    Assetの種類。

    uri: string

    Assetを表すファイルのURI。