This repository has been archived on 2020-08-22. You can view files and clone it, but cannot push or open issues or pull requests.
flutter-unity-view-widget/example/Unity/Demo App/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_TextElement.cs

26 lines
512 B
C#

using UnityEngine;
using System;
using System.Collections;
namespace TMPro
{
/// <summary>
/// Base class for all text elements like characters (glyphs) and sprites.
/// </summary>
[Serializable]
public class TMP_TextElement
{
public int id;
public float x;
public float y;
public float width;
public float height;
public float xOffset;
public float yOffset;
public float xAdvance;
public float scale;
}
}