【发布时间】:2014-03-27 00:21:49
【问题描述】:
操作不在此代码中运行:
SKAction *moveLeft = [SKAction moveToX:(-800) duration:0.6];
SKAction *moveRight = [SKAction moveToX:(800) duration:0.6];
[_labelLogo runAction:moveLeft];
[_labelPlay runAction:moveRight];
NewYork *start = [[NewYork alloc] initWithSize:self.size];
SKTransition *reveal = [SKTransition fadeWithColor:[UIColor clearColor] duration:2];
reveal.pausesIncomingScene = NO;
[self.scene.view presentScene: start transition: reveal];
如果我评论 NewYork Switching 他们工作。
【问题讨论】:
-
检查我编辑的答案
标签: ios sprite-kit skaction