2011-11-01 209 views
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]]; 
} 

回答

0

試試這個:

- (void)ccTouchesBegan:(NSSet *)touches withEvent:(UIEvent *)event { 
    UITouch *myTouch = [touches anyObject]; 
    CGPoint location = [myTouch locationInView:[myTouch view]]; 

    location = [[CCDirector sharedDirector] convertToGL:location]; 

    CGRect touchpoint = CGRectMake(160, 66, 564, 220); // your sprite position 

    if(CGRectContainsPoint(touchpoint, location)) 
    { 
     yoursprite.position = ccp(location.x,location.y);// write move code 
                  //here and check same 
                  //condition for all 
                  //your sprite. 
    } 
} 

或爲您的精靈分配標籤並檢查它們。