gpt4 book ai didi

c++ - 从字符串中制作一个字符的 Sprite

转载 作者:行者123 更新时间:2023-11-28 06:49:37 26 4
gpt4 key购买 nike

我正在训练cocos2d-x。我正在尝试使用 CCLabelBMFont 制作一个字符的 Sprite 。我写的代码如下

string str = "I like an apple";
CCLabelBMFont *label = CCLabelBMFont::create(str.c_str() , "font.fnt");

我应该如何编写代码来从字符串中生成一个字符的 Sprite 。

我想象的是如下的感觉。

例)

CCSprite *spr = 'I';
CCSprite *spr2 = '\n';
CCSprite *spr3 = 'l';
CCSprite *spr4 = 'i';
CCSprite *spr5 = 'k';
CCSprite *spr6 = 'e';
...

最佳答案

string 是字符的 array,因此在运行时的任何时候,您都可以使用 访问该字符串的单个 char >str[x],其中 str 是您的字符串变量,x 是字符的索引。

对于您的代码,您可以使用循环:

for (int i = 0 ; i < str.size() ; i++)
// here use str[i] as the char you are looking for

关于c++ - 从字符串中制作一个字符的 Sprite ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24227438/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com