【问题标题】:How do I enable multitouch on cocos2d v3?如何在 cocos2d v3 上启用多点触控?
【发布时间】:2014-06-25 04:23:32
【问题描述】:

多年来,我一直在努力让它发挥作用。我搜索了所有网络,只能找到错误。

这是我在 HelloWorldScene.m 中初始化函数的代码

- (id)init
{
    // Apple recommend assigning self with supers return value
    self = [super init];
    if (!self) return(nil);

    // Enable touch handling on scene node

    [self setUserInteractionEnabled:YES];
    [self setMultipleTouchEnabled:YES];
    self.exclusiveTouch = NO;
    self.claimsUserInteraction = NO;
    // Create a colored background (Dark Grey)
    CCNodeColor *background = [CCNodeColor nodeWithColor:[CCColor colorWithRed:0.2f green:0.2f blue:0.2f alpha:1.0f]];
    [self addChild:background];

    //Physics rules -- (Must go under [self addChild:background])
    _physicsWorld = [CCPhysicsNode node];
    //Sets the gravity of the world.
    _physicsWorld.gravity = ccp(0,0);
    _physicsWorld.debugDraw = YES;
    _physicsWorld.collisionDelegate = self;
    [self addChild:_physicsWorld];
    //End Physics Rules

    // Add a sprite
    _player = [CCSprite spriteWithImageNamed:@"ship.png"];
    [_player setScaleX: .2f];
    [_player setScaleY: .2f];
    _player.position = ccp(110, self.contentSize.height / 2);
    _player.physicsBody = [CCPhysicsBody bodyWithRect:(CGRect){CGPointZero, _player.contentSize} cornerRadius:1]; // 1
    _player.physicsBody.collisionGroup = @"playerGroup"; // 2
    _player.physicsBody.collisionType = @"playerRect";
    [_physicsWorld addChild:_player];

    playerDirection = @"none";




    // Create a back button
    CCButton *backButton = [CCButton buttonWithTitle:@"[ Menu ]" fontName:@"Verdana-Bold" fontSize:18.0f];
    backButton.positionType = CCPositionTypeNormalized;
    backButton.position = ccp(0.85f, 0.95f); // Top Right of screen
    [backButton setTarget:self selector:@selector(onBackClicked:)];
    [self addChild:backButton];

    // done
    return self;
}

这是我的实际多点触控代码

-(void) touchBegan:(UITouch *)touch withEvent:(UIEvent *)event {

    CGPoint touchLocation = [touch locationInView:[touch view]];
    touchLocation = [[CCDirector sharedDirector] convertToGL:touchLocation];

    CGPoint targetPosition = ccp(self.contentSize.width, _player.position.y);

    if(touchLocation.x <= 350 && touchLocation.y >= 150){

    playerDirection = @"up";

    }

    if(touchLocation.x <= 350 && touchLocation.y <= 150){

    playerDirection = @"down";

    }

    bulletsOnScreen++;


    if(touchLocation.x >= 351){

   CCSprite *projectile = [CCSprite spriteWithImageNamed:@"black.jpg"];
   [projectile setScaleX:.03f];
   [projectile setScaleY:.03f];
   projectile.position = _player.position;
   [self addChild:projectile ];

    CCActionMoveTo *actionMove   = [CCActionMoveTo actionWithDuration:1.5f position:targetPosition];
    CCActionRemove *actionRemove = [CCActionRemove action];
    [projectile runAction:[CCActionSequence actionWithArray:@[actionMove,actionRemove]]];
}

我只是希望能够同时移动和开火?任何帮助,将不胜感激。谢谢!

【问题讨论】:

    标签: ios cocos2d-iphone controls game-physics


    【解决方案1】:

    目前正在使用 touchBegan 但请尝试 -

    -(void) touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
    

    而不是

    -(void) touchBegan:(UITouch *)touch withEvent:(UIEvent *)event 
    

    【讨论】:

      【解决方案2】:

      执行更改后:

      AppController.mm.[eaglView setMultipleTouchEnabled:YES];
      

      我们可以开始为multitouch 编码。

      【讨论】:

        猜你喜欢
        • 2023-04-03
        • 2010-12-18
        • 1970-01-01
        • 1970-01-01
        • 1970-01-01
        • 1970-01-01
        • 1970-01-01
        • 1970-01-01
        • 1970-01-01
        相关资源
        最近更新 更多