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,不显示别的。
时间: 2024-10-01 05:15:14