Preparing search index...

    Asset containing Gaussian splats for use with GaussianSplattingVisual.

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

    // Find GaussianSplattingAsset and configure its properties
    const splats = model.project.assetManager.assets.filter(
    a => a.isOfType('GaussianSplattingAsset')
    ) as Editor.Assets.GaussianSplattingAsset[];

    for (const gs of splats) {
    if (Editor.isNull(gs)) continue;
    // Configure the gaussian splatting asset
    gs.flipXY = true;
    gs.recenter = true;
    gs.scale = 2.0;
    gs.pivot = new vec3(0, 0, 0);
    console.log(`${gs.name}: flipXY=${gs.flipXY}, scale=${gs.scale}, recenter=${gs.recenter}`);
    }

    Hierarchy (View Summary)

    Index

    Constructors

    Properties

    cacheFile: Path

    Path to the cached asset file.

    Import metadata for the asset.

    flipXY: boolean

    Flips X and Y axis of 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.

    pivot: vec3

    Pivot point of the asset as a 3D vector.

    recenter: boolean

    Places pivot of the asset to the center of its bounding box.

    scale: number

    Applies a scale multiplier to the asset's transform.

    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