Cocos2D默认的调度间隔是多少?

发布于 2024-11-08 17:25:19 字数 195 浏览 0 评论 0原文

在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 技术交流群。

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

发布评论

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

评论(1

征﹌骨岁月お 2024-11-15 17:25:19

这取决于您的 CCDirector 设置。如果您使用

[[CCDirector sharedDirector] setAnimationInterval:1.0/60];

CC_DIRECTOR_INIT();

则更新方法每 1/60 秒调用一次。

It depends on your CCDirector setting. If you are using

[[CCDirector sharedDirector] setAnimationInterval:1.0/60];

or

CC_DIRECTOR_INIT();

then update method is invoked every 1/60 second.

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