Нема описа
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.

123456789101112131415
  1. namespace UnityEngine.TextCore
  2. {
  3. /// <summary>
  4. /// Enumeration of currently supported OpenType Layout features.
  5. /// </summary>
  6. public enum OTL_FeatureTag : uint
  7. {
  8. kern = 'k' << 24 | 'e' << 16 | 'r' << 8 | 'n',
  9. liga = 'l' << 24 | 'i' << 16 | 'g' << 8 | 'a',
  10. mark = 'm' << 24 | 'a' << 16 | 'r' << 8 | 'k',
  11. mkmk = 'm' << 24 | 'k' << 16 | 'm' << 8 | 'k',
  12. }
  13. }