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

Im currently using Corona SDK to develop a 2D game.

I seem to be having a lot of trouble at the moment enabling and disabling collision detection on complex bodies. I have a display object with 3 complex physics bodies attached to it. Now, at any one time I only want one of them to be active, and what decides if they're active or not is the direction in which the character is facing. I started off using "isSensor" but this only seemed to affect the whole body itself (unless I was using this wrong). Also, I see this in the docs regarding "isSensor"...

"Consequently, setting isSensor is set for the entire body. One implication is that for complex physics bodies, where some elements are sensors and some are not, using the body.isSensor property will permanently override the individual body element settings." <--- this needs some explaining as I can't see how i can enable for complex physics bodies.

I've also attempted to use "isBodyActive" but this just disables the collision detection on the whole character and all his associated bodies. I want this behaviour but only on the character's bodies. A way to also refer to each body individually as part of the character display object would also be useful

Can somebody please give me a few hints as to what I need to do to solve this? I don't have any problem with collision detection with the complex bodies, just in the API call(s) that need to be made to only keep one complex body active for collision detection at a time.

Any help would be much appreciated.

Kind Regards

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.