2012. 10. 9. 17:39
1페이지 이상은 안된다.
반드시 폰트 이미지는 1페이지로 구성되어야 한다.
void CCBMFontConfiguration::parseCommonArguments(std::string line)
에서
// pages. sanity check
index = line.find("pages=") + strlen("pages=");
index2 = line.find(' ', index);
value = line.substr(index, index2-index);
CCAssert(atoi(value.c_str()) == 1, "CCBitfontAtlas: only supports 1 page");
부분이 있기 때문이다.
'Cocos2d' 카테고리의 다른 글
CCAction 관리 (0) | 2012.11.27 |
---|---|
cocos2d-x Sprite의 이미지를 바꾸기 (0) | 2012.08.29 |
cocos2d-x "color type 6" (0) | 2012.08.29 |
cocos2d-x CCTextureCache::sharedTextureCache()->textureForKey() (0) | 2012.08.28 |
cocos2d-x addChild()와 onEnter() (0) | 2012.08.24 |