yyl
2026-02-12 5667c0a5e6b83964e2538a17dcfd6b719692ddda
Main/Utility/FontUtility.cs
@@ -7,17 +7,17 @@
public class FontUtility
{
    // T044: Fonts must be pre-loaded via StartupEssential preload config
    // (location: "Assets/ResourcesOut/BuiltIn/Font")
    // T044: Fonts loaded via FontUtility.InitAsync or UILoader.LoadFont
    // Actual location: Assets/ResourcesOut/Font/
    public static Font preferred
    {
        get { return ResourceCacheManager.Instance.GetCached<Font>("Assets/ResourcesOut/BuiltIn/Font/GameFont1.ttf"); }
        get { return ResourceCacheManager.Instance.GetCached<Font>("Assets/ResourcesOut/Font/GameFont1.ttf"); }
    }
    public static Font secondary
    {
        get { return ResourceCacheManager.Instance.GetCached<Font>("Assets/ResourcesOut/BuiltIn/Font/GameFont2.ttf"); }
        get { return ResourceCacheManager.Instance.GetCached<Font>("Assets/ResourcesOut/Font/GameFont2.ttf"); }
    }
    /// <summary>