菜鸟教程小白 发表于 2022-12-13 09:37:51

objective-c - 如何在 Cocos2D 中的移动 Sprite 上添加文本?


                                            <p><p>这是我在 Cocos2D 中的第一款游戏。我正在使用 Cocos2D 1.0.1。我想在应该居中对齐的移动 Sprite 上添加文本。我已经使用了带有文本的 CCLabelTTF,但我无法使其居中对齐。这是我到目前为止所做的:-</p>

<p>-(void)addTarget {</p>

<pre><code>int enType= arc4random() % 11;

CCSprite *target= rect:CGRectMake(0, 0, 100, 119)];

label = [ initWithString:@&#34;H!&#34; dimensions:CGSizeMake(.width, .height)
                                 alignment:UITextAlignmentCenter fontName:@&#34;verdana&#34; fontSize:20.0f];

label.color = ccc3(60,60,60);

;
</code></pre>

<p>//创建 Action </p>

<pre><code>id actionMove = ;

];

//;


// Add to targets array

;
</code></pre>

<p>}</p>

<p>在某处我读到添加“;”在 sprite 的作用下,将使其居中对齐,但徒劳无功。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>尝试在此处设置标签位置:</p>

<pre><code>label = [ initWithString:@&#34;H!&#34; dimensions:CGSizeMake(.width, .height)
                                 alignment:UITextAlignmentCenter fontName:@&#34;verdana&#34; fontSize:20.0f];
//LABEL POSITION HERE
label.position = ccp(0, 40);
label.color = ccc3(60,60,60);
</code></pre>

<p>您可能不得不使用位置值,直到将它放在您想要的位置。</p></p>
                                   
                                                <p style="font-size: 20px;">关于objective-c - 如何在 Cocos2D 中的移动 Sprite 上添加文本?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/7966319/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/7966319/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: objective-c - 如何在 Cocos2D 中的移动 Sprite 上添加文本?