cocos2dのスケジューラーの間隔と遅延の違いを理解しようとしています。
遅延が2つのセレクター間の時間である場合、実行されます。本当にインターバルとは何ですか?
cocos2dのスケジューラーの間隔と遅延の違いを理解しようとしています。
遅延が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;