Taos API Reference
    Preparing search index...

    Interface ResolvedAsset

    One resolved asset destined for a pack, with its bytes already read.

    interface ResolvedAsset {
        key: string;
        bytes: Uint8Array;
        path?: string;
        type?: string;
        labels?: string[];
    }
    Index

    Properties

    key: string

    Stable key (guid / address) the runtime resolves by.

    bytes: Uint8Array

    Raw bytes.

    path?: string

    Project-relative source path (recorded on the entry, for tooling).

    type?: string

    Loader hint ('gltf', 'texture', …).

    labels?: string[]

    Labels carried into the catalog.