説明なし
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

TMP_SerializedPropertyHolder.cs 419B

1234567891011121314
  1. using UnityEngine;
  2. using UnityEditor;
  3. namespace TMPro
  4. {
  5. class TMP_SerializedPropertyHolder : ScriptableObject
  6. {
  7. public TMP_FontAsset fontAsset;
  8. public uint firstCharacter;
  9. public uint secondCharacter;
  10. public TMP_GlyphPairAdjustmentRecord glyphPairAdjustmentRecord = new TMP_GlyphPairAdjustmentRecord(new TMP_GlyphAdjustmentRecord(), new TMP_GlyphAdjustmentRecord());
  11. }
  12. }