Cocos2D默认的调度间隔是多少?
在cocos2d中,当你使用默认(空白)间隔参数创建计时器时:
[self schedule:(update)];
//Not a 100% sure this code is correct, but you know what i mean
计时器运行的间隔是多少,我认为它是1/60,但我不确定。
In cocos2d when you make a timer with default (blank) interval parameter:
[self schedule:(update)];
//Not a 100% sure this code is correct, but you know what i mean
What interval is the timer running at, I think its 1/60, but Im not sure.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这取决于您的 CCDirector 设置。如果您使用
或
则更新方法每 1/60 秒调用一次。
It depends on your CCDirector setting. If you are using
or
then update method is invoked every 1/60 second.