This commit is contained in:
2025-01-17 13:10:42 +01:00
commit 4536213c91
15115 changed files with 1442174 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
namespace UnityEngine.TextCore
{
/// <summary>
/// Enumeration of currently supported OpenType Layout features.
/// </summary>
public enum OTL_FeatureTag : uint
{
kern = 'k' << 24 | 'e' << 16 | 'r' << 8 | 'n',
liga = 'l' << 24 | 'i' << 16 | 'g' << 8 | 'a',
mark = 'm' << 24 | 'a' << 16 | 'r' << 8 | 'k',
mkmk = 'm' << 24 | 'k' << 16 | 'm' << 8 | 'k',
}
}