0
votes
1answer
53 views

rotating body and attached sprite in box2d

I have a question that is killing me... I'm using LevelHelper to make a level in Box2d. So I have a triangular sprite attached to a triangular body. Now the problem is that I want to rotate that ...
0
votes
1answer
24 views

Attaching a Rotated Rectangular body to a Sprite

In a game I am programming in Cocos2D and Box2D, I have a sprite that is in the shape of a hill, and I am trying to attach a body to it so it can respond to physics. My idea is to use a rotated ...
1
vote
1answer
107 views

Box2D & Cocos2d-x finding future location of a body

I'm in the process of making a mobile game and am having trouble predicting the future location of a body/sprite pair. The method I am using to do this is below. 1 --futureX is passed in as the ...
0
votes
0answers
68 views

Box2d Sprite displays not in center of polygon

I have a weird problem when add sprite to custom polygon, it displays not in center of polygone but in left-top side. Like on that picture: http://pbs.twimg.com/media/BC8onkHCUAAwMVM.png:large //4th ...
0
votes
0answers
191 views

create box2d andengine box2d body without sprite

hey I have created my body using following code: (please read full description) Body polyBody; final BodyDef mBodyDef = new BodyDef(); mBodyDef.type = BodyDef.BodyType.DynamicBody; ...
1
vote
0answers
93 views

create distorted polygon box2d body from rectangular texture region

I have a rectangular sprite. I have created a polygon body. I cut it and I have obtained the coordinates of the polygons that needs to be created. challenge for me is to create that distorted ...
0
votes
1answer
49 views

Attaching a Body to a Sprite

I am trying to test/create a sample game using Cocos2d 2.0 and box2d. I have a bunch of sprites on the screen and when I press the Sprite, I want a body to be automatically attached to that Sprite. I ...
0
votes
1answer
61 views

how to break/disect a sprite using anengine box2d?

I have a sprite that is a stick. My sprite is connected to physics Boxbody(box2d). I want if i click on the middle of the stick it should be broken from the middle and if i click in the start it ...
0
votes
0answers
159 views

Cocos2D + Box2D sprite/particle effect animations

I would like to know how to handle a large number of sprite animations /particle effects in cocos2d + box2d. Do I have to handle all sprite animations inside box2d tick() method or do I have to use ...
1
vote
2answers
1k views

AndEngine physics - my character shakes while moving

I have a problem with physics in AndEngine. My sprite shakes while moving and sometimes jumps. I made my 'floor' of boxes 32x32 and everyone is another body, so I thought this is the issue (some ...
2
votes
1answer
1k views

How to make sprites move randomly in the scene :- andengine

I am making a game where i require about 50 small bugs to be entering the scene from all directions. I want them to move around randomly on the screen but it doesn't seem possible. It seems that if i ...
0
votes
1answer
280 views

How do you detect if one sprite is inside of another?

I'm using AndEngine and Box2d to make a game. Sprites/bodies are randomly generated and placed on the scene. I know I can calculate the areas and see if they overlap, but this seems taxing. Is there ...
0
votes
2answers
1k views

Bullet Collision Detection

I'm developing a game by andengine.I have player.And there are enemies that are coming random time with MoveModifier and they are sprite.I want: The plyer shoot a bullet and the bullet touch enemy, ...
0
votes
1answer
1k views

Collision detection In Andengine

I wanna get collision detection between AnimatedSprite which is Body of box2d and Shape.I'm using codes below.But it gives error. "walls" is a rectangle shape, "player" is animatedsprite. ...
1
vote
2answers
1k views

Assigning textures on Box2D Object

I recently started to work with box2d, and currently I am having a problem with drawing box2d. Right now, my boxes are drawn with only boundary lines. But I want to draw Textures at where the box ...
5
votes
1answer
663 views

Create a random, sine graph like landscape sprite

Lets say I have this sprite: And I created a random landscape during runtime: And then, I want to tile the area below the line with the sprite: This is the game ground, therefore it should ...
0
votes
1answer
319 views

cocos2d box2d scale sprite -> removechild (how?)

I am little slow in English, please do understand. Here is my source code: - (void)createBall:(CGPoint)touchedAt{ CGSize winSize = [CCDirector sharedDirector].winSize; ball2 = [CCSprite ...
0
votes
1answer
1k views

AndEngine Sprite/Box2D Body removal removes a particluar body (as it should), but removes all instances of the sprite?

I am making a game using Andengine/Box2D physics addon. I experienced the random crashes due to the addition/movement/deletion of box2d bodies during the world step calculation, so I have implemented ...
4
votes
1answer
3k views

AndEngine Sprite/Box2D Body removal crashes my program with no error/exception information?

I am making a skateboarding game with obstacles you have to jump over using box2D and AndEngine. I am trying to make it so that when the player collides with an object, the object is removed and an ...
0
votes
1answer
2k views

Box2D body with animating sprite sheet plist

I have created an animating sprite using CCSpriteBatchNode and CCSprite. I use plist to get frames. Here is the code I put it in init(). //================== making animating sprite ...
1
vote
2answers
1k views

AndEngine: Problem with registering and unregistering physics connector

Here's the problem: I have a figure, that has both sprite and body. This figure is dragable, and on the touch event's Action Down I need body to be disconnected so it could not collide with other ...
-1
votes
1answer
333 views

How to get the position of a sprite in Box2d in iPhone

Help me out with some sample code for getting the position of a sprite in Box2d in iPhone.