2

cocos2dのスケジューラーの間隔と遅延の違いを理解しようとしています。

遅延が2つのセレクター間の時間である場合、実行されます。本当にインターバルとは何ですか?

4

1 に答える 1

2

Comments in cocos2D CCNode.h file, may be useful.

Schedules a custom selector with an interval time in seconds /** repeat will execute the action repeat + 1 times, for a continues action use kCCRepeatForever delay is the amount of time the action will wait before execution */

If the selector is already scheduled, then the interval parameter will be updated without scheduling it again.

-(void) schedule:(SEL)selector interval:(ccTime)interval repeat: (uint) repeat delay:(ccTime) delay;
于 2012-11-08T06:11:16.600 に答える