Example #1
0
        internal static void InvokeTextureRebuilt_Internal(Font font)
        {
            Action <Font> expr_06 = Font.textureRebuilt;

            if (expr_06 != null)
            {
                expr_06(font);
            }
            Font.FontTextureRebuildCallback expr_19 = font.m_FontTextureRebuildCallback;
            if (expr_19 != null)
            {
                expr_19();
            }
        }
Example #2
0
 public void Clear()
 {
     bitmapFont = null;
     dynamicFont = null;
     textureRebuildCallback_ = null;
 }
Example #3
0
	public UIFont()
	{
		m_FontChangedCallback = new Font.FontTextureRebuildCallback(OnFontChanged);
	}