BMFont.Clear C# (CSharp) Method

Clear() public method

Clear the glyphs.
public Clear ( ) : void
return void
	public void Clear ()
	{
		mDict.Clear();
		mSaved.Clear();
	}

Usage Example

Ejemplo n.º 1
0
 static public int Clear(IntPtr l)
 {
     try {
         BMFont self = (BMFont)checkSelf(l);
         self.Clear();
         pushValue(l, true);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
All Usage Examples Of BMFont::Clear