Preparing search index...

    Reference to a remote asset identified by an asset ID.

        const model = this.pluginSystem.findInterface(Editor.Model.IModel) as Editor.Model.IModel;

    // Find RemoteReferenceAsset assets and read their remote asset IDs
    const remoteAssets = model.project.assetManager.assets.filter(
    a => a.isOfType('RemoteReferenceAsset')
    ) as Editor.Assets.RemoteReferenceAsset[];

    for (const asset of remoteAssets) {
    if (Editor.isNull(asset)) continue;
    console.log(`RemoteReferenceAsset: ${asset.name}, assetId: ${asset.assetId}`);
    }

    Hierarchy (View Summary)

    Index

    Constructors

    Properties

    assetId: string

    Unique identifier of the remote asset.

    cacheFile: Path

    Path to the cached asset file.

    Import metadata for the asset.

    id: Uuid

    The unique id of the entity.

    meta: Meta

    Metadata associated with this entity, providing access to its unique identifier and other descriptive properties.

    name: string

    The name of the asset.

    type: string

    The entity's type.

    Methods

    • Returns the name of this object's type.

      Returns string

    • Returns true if the object is of the specified type.

      Parameters

      • type: string

      Returns boolean

    • Returns true if this object refers to the same instance as the given object.

      Parameters

      Returns boolean