Cocos2d - Iphone ScheduleUpdate 更新未被调用
我有一个扩展 CCNode 的 Player 类,并且我想要一个每帧调用(更新)的方法。在我的 init 方法中,我添加了以下代码行 [self ScheduleUpdate];
但我的 -(void) update:(ccTime)deltaTime
方法从未被调用,为什么呢?
I have a Player class that extends CCNode, and i want to hava a method that is called every frame (update). In my init method i added the following line of code [self scheduleUpdate];
but my -(void) update:(ccTime)deltaTime
method is never called why is that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
玩家是否已添加到主节点?使用 addchild 函数?我的意思是,如果您有另一个使用播放器实例的类,您应该使用 addchild 方法将播放器添加到该类中
is the player added to the main node ?? with the addchild function ? I mean if you have another class which uses a player instance, you should add the player to that class with the addchild method