Module for generating entities within Lens Studio projects.
Example
// The LensStudio:EntityGenerator module provides the EntityGenerator base class // for plugins that create new entities (SceneObjects, Assets, or Components) // in the Lens Studio scene hierarchy. // // Descriptor fields: // entityType: string — 'SceneObject', 'Asset', or 'Component' // displayOrder: number — position in the UI relative to other generators // icon: Editor.Icon — icon for the generator in the UI // // EntityGenerator class: // generate(): Promise<Editor.Model.Entity> — override to create entities
Module for generating entities within Lens Studio projects.
Example