I have a batchnode of sprites that are getting added to the scene. The locations of these sprites are off set from the position of the batchnde so I can rotate them about the point of the batch node.
The problem occurs when I attach a B2Body to any of these sprites, their position on the screen changes.
balloon1 = [CCSprite spriteWithSpriteFrameName:@"1.png"];
balloon1.position = ccp(30,30);
balloon1.tag = 10;
//balloon1.anchorPoint = ccp(1.1,0.7);
[spriteNode addChild:balloon1];
b2BodyDef balloonBodyDef;
balloonBodyDef.type = b2_dynamicBody;
balloonBodyDef.position.Set((160 + balloon1.position.y)/PTM_RATIO, (240 - balloon1.position.x)/PTM_RATIO);
balloonBodyDef.userData = balloon1;
b2Body *balloonBody = world->CreateBody(&balloonBodyDef);
b2PolygonShape balloon;
balloon.SetAsBox((balloon1.contentSize.width/PTM_RATIO/2),
(balloon1.contentSize.height/PTM_RATIO/2));
// Create shape definition and add to body
b2FixtureDef laserGunShapeDef;
laserGunShapeDef.shape = &laser;
//laserGunShapeDef.density = 0.0f;
//laserGunShapeDef.friction = 10.0f;
//laserGunShapeDef.restitution = 0.0f;
b2Fixture *balloonFixture = balloonBody->CreateFixture(&laserGunShapeDef);
If I add the balloon as a sprite from a file, this works ok, but when its done as above, then the balloon moves off the screen.
Any ideas would be appreciated.