0
我在觸摸事件中遇到問題。 我有5個精靈,我想移動一個精靈和只有選定的精靈。但在這時候我在.m文件移動觸摸那麼只有一個Sprite是移動如何移動的唯一選擇雪碧..觸摸在Cocos2d中移動
在.h文件中
CCSprite *puzzButton1,*puzzButton2,*puzzButton3;
// create and initialize our seeker sprite, and add it to this layer
puzzButton1 = [CCSprite spriteWithFile: @"ingame_button_idal.png"];
puzzButton1.position = ccp(480/2, 320/2);
[self addChild:puzzButton1];
// create and initialize our seeker sprite, and add it to this layer
puzzButton2 = [CCSprite spriteWithFile: @"ingame_button_idal.png"];
puzzButton2.position = ccp(100, 200);
[self addChild:puzzButton2];
// create and initialize our seeker sprite, and add it to this layer
puzzButton3 = [CCSprite spriteWithFile: @"ingame_button_idal.png"];
puzzButton3.position = ccp(100, 300);
[self addChild:puzzButton3];
和
- (BOOL)ccTouchBegan:(UITouch *)touch withEvent:(UIEvent *)event
{
return TRUE;
}
- (void)ccTouchMoved:(UITouch *)touch withEvent:(UIEvent *)event
{
CGPoint location = [self convertTouchToNodeSpace: touch];
[puzzButton1 stopAllActions];
[puzzButton1 runAction: [CCMoveTo actionWithDuration:0.1 position:location]];
}