我目前正在使用 cocos2d Director 通过 、 和 方法控制我pause
的resume
动画stopAnimation
。是否也可以使用Director来返回动画播放的时间?
我目前正在使用这种方法:
-(void)stopAnimation:(id)sender {
//Timer initialized elsewhere: startTimer = [NSDate timeIntervalSinceReferenceDate];
//Do other method stuff here
[[Director sharedDirector] stopAnimation];
stopTimer = [NSDate timeIntervalSinceReferenceDate];
elapsedTime = (stopTimer - startTimer);
NSLog(@"elapsedTime = %f", elapsedTime);
}