wuxianshengcong/Library/PackageCache/com.unity.textmeshpro@3.0.7/Scripts/Editor/TMP_SerializedPropertyHolder.cs

14 lines
419 B
C#
Raw Permalink Normal View History

2025-01-02 14:49:00 +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());
}
}