Geen omschrijving
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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. }