Ejemplo n.º 1
0
		// Called by TextfxFontChangeListener when a Font OnPostprocessAllAssets() call is triggered.
		// Checks if imported font is same as one being used.
		void FontImportDetected(Font changedFont)
		{
			if(m_font == null)
			{
				return;
			}
			
			if(changedFont.Equals(m_font))
			{
				m_current_font_name = "";
				
				SetText(m_text);
			}
		}