Cocos2d-x3.3Final(10)TextAtlas常用成员函数(C++)

前端之家收集整理的这篇文章主要介绍了Cocos2d-x3.3Final(10)TextAtlas常用成员函数(C++)前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

TextAtlas //来自于官网http://www.cocos2d-x.org/wiki/Widget的释义,UILabelAtlas can display number label that jointed by images:

atlas的英文含义是地图集,所以释义可以解释为可以显示图片组合而成的数字标签标签地图集。

TextAtlas * textAtlas = TextAtlas::create("12780","cocosui/labelatlas.png",17,22,"0");

此时 我们打开cocosui/labelatlas.png来看


图片特点是 只有数字构成,而且只有一个png没有其他的东西,目前来看 数字是按照0-9的顺序排列,没有错位,没有重复。

我们输入了12780,则这里只显示12780,不显示别的。

原文链接:https://www.f2er.com/cocos2dx/344482.html

猜你在找的Cocos2d-x相关文章