【问题标题】:How to change the color of an SKSpriteNode in touchesBegan?如何在 touchesBegan 中更改 SKSpriteNode 的颜色?
【发布时间】:2015-05-04 10:46:18
【问题描述】:

我是 SpriteKit 的新手,我正在尝试更改 touchesBegan 内的 SKSpriteNode 的颜色。我的尝试失败了;任何人都可以提出一个原因吗?

这是我的代码:

-(id)initWithSize:(CGSize)size {    
    if (self = [super initWithSize:size]) {
    /* Setup your scene here */

    self.backgroundColor = [SKColor colorWithRed:0.15 green:0.15 blue:0.3 alpha:1.0];

   mySKSpriteNode=[SKSpriteNode spriteNodeWithTexture:[SKTexture textureWithImage:[UIImage imageNamed:@"bg-1.png"]] size:CGSizeMake(50, 50)];
    [mySKSpriteNode setPosition:CGPointMake(150, 300)];
    mySKSpriteNode.name = @"thisIsMySprite"; // set the name for your sprite
    mySKSpriteNode.userInteractionEnabled = NO;

    [self addChild:mySKSpriteNode];
   }
   return self;
 }
 -(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
 {

   UITouch *touch = [touches anyObject];
   CGPoint location = [touch locationInNode:self];
   SKNode *node = [self nodeAtPoint:location];
   if ([node.name isEqualToString:@"thisIsMySprite"])
   {
      NSLog(@"mySKSpriteNode was touched!");
      [mySKSpriteNode setColor:[UIColor whiteColor]];
   }

 }

if 语句被执行,因为“我的 mySKSpriteNode 被触动了!”触摸节点时成功打印。但是,我无法更改节点的颜色。有人可以建议一种方法吗?

【问题讨论】:

标签: ios sprite-kit skspritenode touchesbegan


【解决方案1】:

我犯了一个错误,它没有改变颜色,因为我用纹理而不是颜色来初始化精灵。

我用以下代码修复了它:

 mySKSpriteNode=[SKSpriteNode spriteNodeWithColor:[UIColor redColor]  size:CGSizeMake(50, 50)];

【讨论】:

  • 请将您自己的答案标记为正确。这将使人们能够看到解决问题的方法,并节省其他用户寻找未解决问题的时间。
猜你喜欢
  • 2015-10-07
  • 1970-01-01
  • 2016-02-22
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 2016-01-24
  • 1970-01-01
相关资源
最近更新 更多