//--------------------------------------
Exemplo n.º 2
0
		/// <summary>Sets up InfiniText. Called automatically when the first font is loaded.</summary>
		public static void Start(){
			
			if(Rasteriser!=null){
				return;
			}
			
			UpdateAliasValues();
			
			// Setup and start the rasteriser:
			Rasteriser=new Scanner();
			Rasteriser.SDFSize=SdfSize;
			Rasteriser.DrawHeight=(int)SdfPixelHeight;
			Rasteriser.Start();
			UpdateAliasValues();
			
		}