Nav apraksta
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

TMP_SerializedPropertyHolder.cs 423B

123456789101112131415
  1. using UnityEngine;
  2. using UnityEngine.TextCore.LowLevel;
  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 GlyphPairAdjustmentRecord glyphPairAdjustmentRecord = new GlyphPairAdjustmentRecord(new GlyphAdjustmentRecord(), new GlyphAdjustmentRecord());
  11. }
  12. }