Aucune description
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

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