mirror of
https://github.com/Cardidi/dotween-upm-fork.git
synced 2025-12-20 09:16:02 +08:00
22 lines
505 B
C#
22 lines
505 B
C#
using UnityEngine;
|
|
|
|
namespace TMPro
|
|
{
|
|
public class TextMeshPro : MonoBehaviour
|
|
{
|
|
public Color color, outlineColor, faceColor;
|
|
public Material fontMaterial, fontSharedMaterial;
|
|
public float fontSize;
|
|
public int maxVisibleCharacters;
|
|
public string text;
|
|
}
|
|
|
|
public class TextMeshProUGUI : MonoBehaviour
|
|
{
|
|
public Color color, outlineColor, faceColor;
|
|
public Material fontMaterial, fontSharedMaterial;
|
|
public float fontSize;
|
|
public int maxVisibleCharacters;
|
|
public string text;
|
|
}
|
|
} |