C# 클래스 BMFont, TheUnseen

파일 보기 프로젝트 열기: henryj41043/TheUnseen 1 사용 예제들

공개 메소드들

메소드 설명
Clear ( ) : void

Clear the glyphs.

GetGlyph ( int index ) : BMGlyph,

Retrieve the specified glyph, if it's present.

GetGlyph ( int index, bool createIfMissing ) : BMGlyph,

Helper function that retrieves the specified glyph, creating it if necessary.

Trim ( int xMin, int yMin, int xMax, int yMax ) : void

Trim the glyphs, ensuring that they will never go past the specified bounds.

메소드 상세

Clear() 공개 메소드

Clear the glyphs.
public Clear ( ) : void
리턴 void

GetGlyph() 공개 메소드

Retrieve the specified glyph, if it's present.
public GetGlyph ( int index ) : BMGlyph,
index int
리턴 BMGlyph,

GetGlyph() 공개 메소드

Helper function that retrieves the specified glyph, creating it if necessary.
public GetGlyph ( int index, bool createIfMissing ) : BMGlyph,
index int
createIfMissing bool
리턴 BMGlyph,

Trim() 공개 메소드

Trim the glyphs, ensuring that they will never go past the specified bounds.
public Trim ( int xMin, int yMin, int xMax, int yMax ) : void
xMin int
yMin int
xMax int
yMax int
리턴 void