SKScene随机返回主菜单

时间:2014-03-20 22:54:17

标签: ios iphone sprite-kit

嗨,在我玩游戏的过程中,当我玩游戏时,随机游戏场景会回到主菜单。这可能是一个问题,因为高分失败等等。任何可能已知的修复程序?

谢谢

1 个答案:

答案 0 :(得分:1)

- (void)viewWillLayoutSubviews{
    [super viewWillLayoutSubviews];

    SKView * skView = (SKView *)self.view;

    if (!skView.scene) {
        skView.showsFPS = YES;
        skView.showsNodeCount = YES;
        skView.showsPhysics = YES;

        // Create and configure the scene.
        SKScene * scene = [MyScene sceneWithSize:skView.bounds.size];
        scene.scaleMode = SKSceneScaleModeAspectFill;

        // Present the scene.
        [skView presentScene:scene];
    }
}

添加此方法替换" viewDidLoad" scene.m。中的方法。