cull(engine-cleanup): pass-9 cascade round 1 after NGUIText stub

This commit is contained in:
gamer147
2026-07-03 23:37:54 -04:00
parent 9183625ac2
commit 08c6bca58c
7 changed files with 0 additions and 102 deletions

View File

@@ -100,9 +100,6 @@ namespace UnityEngine
public partial struct CharacterInfo
{
public int advance;
public int minX, maxX, minY, maxY;
public Vector2 uvBottomLeft, uvBottomRight, uvTopLeft, uvTopRight;
}
public partial class Font
@@ -110,8 +107,6 @@ namespace UnityEngine
public string[] fontNames { get; set; }
public Material material { get; set; }
public static event Action<Font> textureRebuilt;
public bool GetCharacterInfo(char ch, out CharacterInfo info, int size, FontStyle style)
{ info = default; return false; }
public void RequestCharactersInTexture(string characters, int size, FontStyle style) { }
}