mirror of https://github.com/axmolengine/axmol.git
18 lines
423 B
Plaintext
18 lines
423 B
Plaintext
|
|
class CCLabelBMFont : public CCNode
|
|
{
|
|
void setString(const char *label);
|
|
const char* getString(void);
|
|
|
|
void setColor(const ccColor3B& color);
|
|
const ccColor3B& getColor(void);
|
|
|
|
GLubyte getOpacity(void);
|
|
void setOpacity(GLubyte opacity);
|
|
|
|
tolua_property__CCOpacity GLubyte opacity;
|
|
|
|
static void purgeCachedData();
|
|
static CCLabelBMFont * create(const char *str, const char *fntFile);
|
|
};
|