コード例 #1
0
ファイル: CCLabelAtlas.cs プロジェクト: homocury/cocos2d-xna
 public static CCLabelAtlas Create(string label, string charMapFile, int itemWidth, int itemHeight, char startCharMap)
 {
     var pRet = new CCLabelAtlas();
     pRet.InitWithString(label, charMapFile, itemWidth, itemHeight, startCharMap);
     return pRet;
 }
コード例 #2
0
ファイル: CCLabelAtlas.cs プロジェクト: homocury/cocos2d-xna
 public static CCLabelAtlas Create(string label, string fntFile)
 {
     var pRet = new CCLabelAtlas();
     pRet.InitWithString(label, fntFile);
     return pRet;
 }