CLabelAtlas* CLabelAtlas::create(const char *pString, const char *fntFile) { CLabelAtlas *pRet = new CLabelAtlas(); if( pRet && pRet->initWithString(pString, fntFile) ) { pRet->autorelease(); return pRet; } CC_SAFE_DELETE(pRet); return pRet; }
CLabelAtlas* CLabelAtlas::create(const char *pString, const char *charMapFile, unsigned int itemWidth, int unsigned itemHeight, unsigned int startCharMap) { CLabelAtlas *pRet = new CLabelAtlas(); if( pRet && pRet->initWithString(pString, charMapFile, itemWidth, itemHeight, startCharMap) ) { pRet->autorelease(); return pRet; } CC_SAFE_DELETE(pRet); return NULL; }
CLabelAtlas* CLabelAtlas::create(const char* pString, const char* fntFile) { CLabelAtlas *pRet = new CLabelAtlas(); if( pRet && pRet->initWithString(pString, fntFile) ) { pRet->setTouchEnabled(false); pRet->setAnchorPoint(CCWIDGET_BASIC_DEFAULT_ANCHOR_POINT); pRet->autorelease(); return pRet; } CC_SAFE_DELETE(pRet); return pRet; }
CLabelAtlas* CLabelAtlas::create(const char* pString, const char* charMapFile, unsigned int itemWidth, int unsigned itemHeight, unsigned int startCharMap) { CLabelAtlas *pRet = new CLabelAtlas(); if( pRet && pRet->initWithString(pString, charMapFile, itemWidth, itemHeight, startCharMap) ) { pRet->setTouchEnabled(false); pRet->setAnchorPoint(CCWIDGET_BASIC_DEFAULT_ANCHOR_POINT); pRet->autorelease(); return pRet; } CC_SAFE_DELETE(pRet); return NULL; }