gpt4 book ai didi

ios - SpriteKit 在暂停后不会恢复

转载 作者:行者123 更新时间:2023-11-28 22:04:11 24 4
gpt4 key购买 nike

我的游戏使用物理原理,我确实成功暂停了它,但我无法恢复它。节点实际上是下落的物体,暂停时它们会停留在空中,暂停场景时所有的物理效果都会按预期消失。但是当我恢复时,它们停留在空气中并且不会掉落,我也看不到任何物理正在恢复。任何建议将不胜感激。这是我使用的:

-(void) pause{
self.scene.paused = YES;
backgroundView = [[UIView alloc] initWithFrame:self.view.bounds];
[backgroundView setBackgroundColor:[UIColor blackColor]];
[backgroundView setAlpha:.5];

UIImageView *imV = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"resume.png"]];
[imV setFrame:backgroundView.frame];
[imV setContentMode:UIViewContentModeScaleAspectFit];
[backgroundView addSubview:imV];
[backgroundView addGestureRecognizer:[[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(tapPause:)]];
[self.view addSubview:backgroundView];


}

-(void) tapPause:(id)sender{

[UIView animateWithDuration:.3 animations:^{
backgroundView.alpha = 0;
} completion:^(BOOL finished) {
backgroundView = nil;
[backgroundView removeFromSuperview];
}];

self.scene.view.paused = NO;
}

最佳答案

我压缩了代码。也许你能发现错误。 ;)

self.scene.paused = YES;

self.scene.view.paused = NO;

关于ios - SpriteKit 在暂停后不会恢复,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24414731/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com