什么是默认的Cocos2D计划间隔?

时间:2011-05-19 22:27:17

标签: iphone objective-c cocos2d-iphone intervals

使用默认(空白)间隔参数制作计时器时,在cocos2d中:

 [self schedule:(update)]; 
 //Not a 100% sure this code is correct, but you know what i mean

计时器在什么时间间隔运行,我认为是1/60,但我不确定。

1 个答案:

答案 0 :(得分:5)

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

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

CC_DIRECTOR_INIT();

然后每1/60秒调用一次update方法。