mirror of https://github.com/axmolengine/axmol.git
15 lines
327 B
Plaintext
15 lines
327 B
Plaintext
|
|
class CCLabelBMFont : public CCNode
|
|
{
|
|
void setString(const char* label);
|
|
const char* getString(void);
|
|
|
|
void setOpacity(GLubyte opacity);
|
|
GLubyte getOpacity(void);
|
|
|
|
tolua_property__CCOpacity GLubyte opacity;
|
|
|
|
static void purgeCachedData();
|
|
static CCLabelBMFont* labelWithString(const char* str, const char* fntFile);
|
|
};
|