AndEngineカスタムフォントメソッドメモ

2013年10月7日月曜日

andEngine メモ

t f B! P L

指定した文字数分pCharactersToDrawだけ表示する

上手く使えば、文字送り機能になりそう
setCharactersToDraw(int pCharactersToDraw)


自動改行

float pAutoWrapWidthで改行幅数を設定、setAutoWrapで改行を文字数で行うか、単語で行うか決める。両方設定しないと機能しない。
setAutoWrapWidth(float pAutoWrapWidth)
setAutoWrap(AutoWrap pAutoWrap)

例)1文字で改行
text.setAutoWrapWidth(1);
text.setAutoWrap(AutoWrap.LETTERS);
例)1単語区切りで改行
text.setAutoWrapWidth(1);
text.setAutoWrap(AutoWrap.WORDS);


???

setLeading(float pLeading)

Translate

このブログを検索

  • ()
  • ()
もっと見る

QooQ