Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to delete an object in box2d when two objects collide.

When my two objects do collide, one of the object bounces off the other. It does delete the other object, but I want it to make it look like it went through rather than a bounce.

I have my body Def type set to b2_staticBody.

share|improve this question

1 Answer

up vote 2 down vote accepted

You should set the body's fixture to be a sensor:

fixture->SetSensor(true);

You then create a contact listener (class MyContactListener : public b2ContactListener) that detects collisions in the BeginContact method and checks if one of the colliding objects is of this special kind. A good way of doing that is by using these two methods:

/// Get the user data pointer that was provided in the body definition.
void* GetUserData() const;

/// Set the user data. Use this to store your application specific data.
void SetUserData(void* data);

You need to be a bit familiar with C++ to pull it off.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.