cocos2dx[3.2]——新字型標籤Label
1 2 3 4 5 6 7 8 9 10 |
//
static Label* createWithSystemFont(
const std::string& text, //字串內容
const std::string& font, //字型(字型名稱、或字型檔案)
float fontSize, //字號
const Size& dimensions = Size::ZERO, //label的尺寸大小,預設不設定尺寸
TextHAlignment hAlignment = TextHAlignment::LEFT, //水平對齊方式,預設左對齊::LEFT
TextVAlignment vAlignment = TextVAlignment::TOP //垂直對齊方式,預設頂部 ::TOP
);
//
|
1 2 3 4 |
//
//使用系統的字型名稱 "Arial" 來建立
Label* lb1 = Label::createWithSystemFont( "123abc" , "Arial" , 24);
//
|
1 2 3 4 5 6 7 8 9 10 |
//
static Label* createWithTTF(
const
|