Preparing search index...

    Native asset providing data for hair rendering.

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

    // Find HairDataAsset in the project
    const hairAssets = model.project.assetManager.assets.filter(
    a => a.isOfType('HairDataAsset')
    ) as Editor.Assets.HairDataAsset[];

    if (hairAssets.length > 0) {
    // Assign the HairDataAsset to a HairVisual component
    const obj = scene.createSceneObject('HairObject');
    const hairVisual = obj.addComponent('HairVisual');
    hairVisual.hairData = hairAssets[0];
    hairVisual.density = 1.0;
    hairVisual.windEnabled = true;
    console.log(`Assigned ${hairAssets[0].name} to HairVisual`);
    }

    Hierarchy (View Summary)

    Index

    Constructors

    Properties

    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