MyBook/Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_SerializedPropertyHolder.cs

14 lines
419 B
C#
Raw Permalink Normal View History

2025-03-22 14:59:41 +08:00
using UnityEngine;
using UnityEditor;
namespace TMPro
{
class TMP_SerializedPropertyHolder : ScriptableObject
{
public TMP_FontAsset fontAsset;
public uint firstCharacter;
public uint secondCharacter;
public TMP_GlyphPairAdjustmentRecord glyphPairAdjustmentRecord = new TMP_GlyphPairAdjustmentRecord(new TMP_GlyphAdjustmentRecord(), new TMP_GlyphAdjustmentRecord());
}
}