Preparing search index...

    Class FontCollection

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

    Hierarchy (View Summary)

    Index

    Properties

    The full list of entries in this collection. Setting this property replaces all entries.

    name: string

    The name of the Asset in Lens Studio.

    uniqueIdentifier: string

    Methods

    • Creates a new, empty FontCollection asset.

      Returns FontCollection

      //@input Asset.Font fontRegular
      //@input Asset.Font fontBold
      //@input Asset.FontFamily myFamily

      var collection = FontCollection.create();

      var familyEntry = FontCollectionEntry.create();
      familyEntry.asset = script.myFamily;

      var regularEntry = FontCollectionEntry.create();
      regularEntry.asset = script.fontRegular;
      regularEntry.weight = 400;

      var boldEntry = FontCollectionEntry.create();
      boldEntry.asset = script.fontBold;
      boldEntry.weight = 700;

      collection.entries = [familyEntry, regularEntry, boldEntry];
    • Returns the name of this object's type.

      Returns string

    • Returns true if the object matches or derives from the passed in type.

      Parameters

      • type: string

      Returns boolean

    • Returns true if this object is the same as other. Useful for checking if two references point to the same thing.

      Parameters

      Returns boolean