Android 相当于 Cocos2D-Android 中的 Cocos2D-iOS CCNode.visit() 吗?

发布于 2024-12-21 00:59:44 字数 378 浏览 1 评论 0原文

我在 iOS Coco2D 游戏中有以下代码:

CCSprite *mysprite = [CCSprite spriteWithFile:@"mypng.png"];
// ...Some code here... //
[mysprite visit];

在 Coco2D Android 中,我写道:

CCSprite mysprite = CCSprite.sprite("mypng.png");
// ...Some code here... //
mysprite.visit(****GL10 PARAMETER EXPECTED HERE*****);

我应该在访问方法中写什么作为参数?

I have got the following code in my iOS Coco2D game:

CCSprite *mysprite = [CCSprite spriteWithFile:@"mypng.png"];
// ...Some code here... //
[mysprite visit];

In Coco2D Android, I write:

CCSprite mysprite = CCSprite.sprite("mypng.png");
// ...Some code here... //
mysprite.visit(****GL10 PARAMETER EXPECTED HERE*****);

What should I write as parameter in the visit method?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

等待我真够勒 2024-12-28 00:59:44

尝试使用

mysprite.visit(CCDirector.gl)

但未确认

try using

mysprite.visit(CCDirector.gl)

didn't confirm it though

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文