Preparing search index...

    3D texture asset imported from an external file.

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

    // Find FileTexture3D assets and read their 3D dimensions
    const textures = model.project.assetManager.assets.filter(
    a => a.isOfType('FileTexture3D')
    ) as Editor.Assets.FileTexture3D[];

    for (const tex of textures) {
    if (Editor.isNull(tex)) continue;
    const info = tex.fileInfo;
    console.log(`${tex.name}: ${info.width} x ${info.height} x ${info.depth}`);
    }

    Hierarchy (View Summary)

    Index

    Constructors

    Properties

    cacheFile: Path

    Path to the cached asset file.

    Metadata and properties of the imported 3D texture 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