我添加了 7 个精灵并给了它们标签和 zorder.. 但我无法触摸第三个对象,最后只剩下一个对象然后我触摸到它.. 但是当我添加 6 个精灵时,我会得到正确触摸。所有精灵位置都相同,但 zorder 不同..我不明白有什么问题..我已经使用查询回调类来联系..在这里我添加了一些我的代码..
添加精灵的代码..
zIndex = 7;
for(int i = 0; i<zIndex; i++)
{
CCSprite *paddle = [CCSprite spriteWithFile:[NSString stringWithFormat:@"%d.png",i+1]];
paddle.position = ccp(winSize.width/2, winSize.height/2);
[self addChild:paddle z:zIndex-i tag:i+1];
[mutArrSprites addObject:paddle];
NSLog(@"Z = %d tag = %d ",zIndex-i , i+1);
}
for(CCSprite *sprite in mutArrSprites)
{
[self addUserDataToNode:sprite];
}
在 touchbegin 方法中
if (_mouseJoint != NULL) return;
UITouch *myTouch = [touches anyObject];
CGPoint location = [myTouch locationInView:[myTouch view]];
location = [[CCDirector sharedDirector] convertToGL:location];
b2Vec2 locationWorld = b2Vec2(location.x/PTM_RATIO, location.y/PTM_RATIO);
// Make a small box.
b2AABB aabb;
b2Vec2 d;
d.Set(0.001f, 0.001f);
aabb.lowerBound = locationWorld - d;
aabb.upperBound = locationWorld + d;
// Query the world for overlapping shapes.
QueryCallback callback(locationWorld);
_world->QueryAABB(&callback, aabb);
b2Body *body = callback.m_object;
if (body)
{
//pick the body
CCSprite *sprite = (CCSprite *)body->GetUserData();
[self reorderChild:sprite z:zIndex++];
b2MouseJointDef md;
md.bodyA = _groundBody;
md.bodyB = body;
md.target = locationWorld;
md.collideConnected = true;
md.maxForce = 1000.0f * body->GetMass();
_mouseJoint = (b2MouseJoint *)_world->CreateJoint(&md);
body->SetAwake(true);
}