0
    SKSpriteNode *play = (SKSpriteNode*)[self childNodeWithName:@"play"];
    CGPoint location = [touch locationInNode:self];

    if([play containsPoint:location])
    {
        SKScene *PlaneScene =[[abMyScene alloc]initWithSize:self.size];
        SKTransition *fade = [SKTransition fadeWithDuration:1.0];
        [self.view presentScene:PlaneScene transition:fade];
    }

当我点击播放按钮时,加载游戏大约需要 5 秒。但是当游戏结束并返回菜单页面时,它会快速加载。我该怎么办?

4

0 回答 0