Android 相当于 Cocos2D-Android 中的 Cocos2D-iOS CCNode.visit() 吗?
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试使用
但未确认
try using
didn't confirm it though