【发布时间】: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 被触动了!”触摸节点时成功打印。但是,我无法更改节点的颜色。有人可以建议一种方法吗?
【问题讨论】:
-
变色的语法可能有问题。
-
你的意思是说我必须使用 SKColor 而不是 UIColor?
标签: ios sprite-kit skspritenode touchesbegan