Interface PolyverseImportedAssetObjectData

The PolyverseImportedAssetObjectData structure represents information for an Polyverse asset that was imported into the RSX ProjectLibrary.

interface PolyverseImportedAssetObjectData {
    AssetID: string;
    AssetName: string;
    AssetType:
        | "Mesh"
        | "Material"
        | "Image"
        | "Json"
        | "Environment"
        | "Data"
        | "RSXDeployment"
        | "Audio"
        | "Video"
        | "InstaMATPackage";
    LibraryID: string;
    VersionID: number;
}

Properties

AssetID: string

The Polyverse asset ID. For Polytron data, the ID of the PolytronTask.

AssetName: string

The Polyverse asset name. For Polytron data, the name of the PolytronTaskFile.

AssetType:
    | "Mesh"
    | "Material"
    | "Image"
    | "Json"
    | "Environment"
    | "Data"
    | "RSXDeployment"
    | "Audio"
    | "Video"
    | "InstaMATPackage"

The Polyverse asset type.

LibraryID: string

The Polyverse library ID. For Polytron data, Polytron.

VersionID: number

The Polyverse asset version ID. For Poyltron data, the version of the PolytronObjectInfo that was executed.