Preparing search index...

    An ordered collection of Font and FontFamily assets, allowing a Text component to access multiple fonts and font families.

        const model = this.pluginSystem.findInterface(Editor.Model.IModel) as Editor.Model.IModel;
    const scene = model.project.scene;
    const collection = model.project.assetManager.assets.find((a) => a.isOfType('FontCollection')) as
    | Editor.Assets.FontCollection
    | undefined;

    const obj = scene.createSceneObject('TaggedText');
    const text = obj.addComponent('Text');
    text.text = '<b>Bold</b> and <i>italic</i> tags';
    text.enableRichText = true;
    text.size = 36;
    if (collection && !Editor.isNull(collection)) {
    text.fontSource = collection;
    console.log(`Text using FontCollection "${collection.name}" with rich-text tags`);
    } else {
    console.log('No FontCollection found; rich-text rendering uses default font');
    }

    Hierarchy (View Summary)

    Index

    Constructors

    Properties

    cacheFile: Path

    Path to the cached asset file.

    Ordered list of font entries that make up this collection.

    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 type name of this class.

      Returns string

    • 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