gpt4 book ai didi

ios - objective-c - SKScene 的动画背景颜色

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:36:42 25 4
gpt4 key购买 nike

您将如何为 SKScene 的背景颜色设置动画?我已经尝试过 UIView 动画,但毫不奇怪它没有用。在 Sprite-Kit 中是否有等效的方法?

我正在寻找类似这样的东西,但对于 Sprite-Kit:

[UIView animateWithDuration:0.25 animations:^{
self.backgroundColor = [UIColor redColor];
}];

目前,作为解决方法,我在 SKView 上覆盖了一个 UIView,但我想要更灵活的东西。

我是 Sprite-Kit 的新手,如果这非常简单,我深表歉意!

目前我有:

-(id) initWithSize:(CGSize)size {
if (self = [super initWithSize:size]) {
_bg = [SKSpriteNode spriteNodeWithColor:[SKColor colorWithRed:0.13 green:0.13 blue:0.13 alpha:1] size:self.size];
_bg.position = CGPointMake(self.size.width/2, self.size.height/2);
[self addChild:_bg];
}
return self;
}

-(void) colorise :(UIColor*)color {
[_bg runAction:[SKAction colorizeWithColor:color colorBlendFactor:_bg.colorBlendFactor duration:1]];
}

此外,在初始化 SKView 之后,我根据 NSUserDefault 值设置背景 Sprite 的颜色。

 if ([[NSUserDefaults standardUserDefaults] integerForKey:@"currGameMode"] == 0) {
((bubbleAnimation2*)_bubbleEffectView.scene).bg.color = [UIColor colorWithRed:0.13 green:0.13 blue:0.13 alpha:1];}
else {((bubbleAnimation2*)_bubbleEffectView.scene).bg.color = [UIColor colorWithRed:0.25 green:0.13 blue:0.13 alpha:1];}

谢谢!

最佳答案

好吧,我想出了一个完全过度设计的解决方案!我有一组背景 Sprite ,我克隆了原始 Sprite 并更改了它的颜色,然后将其设置为动画。

这是我的代码:

-(void) colorise :(UIColor*)color {
// [_bg runAction:[SKAction colorizeWithColor:color colorBlendFactor:_bg.colorBlendFactor duration:1]];
if ([_bgObjects count] != 0) {
SKSpriteNode* newBg = [[_bgObjects objectAtIndex:0] copy];
newBg.color = color;
newBg.alpha = 0;
[self insertChild:newBg atIndex:1];
[newBg runAction:[SKAction fadeAlphaTo:1 duration:0.5]];
[_bgObjects addObject:newBg];

for (int i = 0; i < ([_bgObjects count]-1); i++) {
[[_bgObjects objectAtIndex:i] runAction:[SKAction fadeAlphaTo:0 duration:0.5]];
}

}
}

-(void) update:(NSTimeInterval)currentTime {
if ([_bgObjects count] > 1) {

NSMutableArray* toDelete = [NSMutableArray arrayWithObjects: nil];

for (SKSpriteNode* bg in _bgObjects) {
if ((bg.alpha == 0) && !bg.hasActions) {
[bg removeFromParent];
[toDelete addObject:bg];
}} [_bgObjects removeObjectsInArray:toDelete];
}
}

关于ios - objective-c - SKScene 的动画背景颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21663453/

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