The compound body hits the static body when it should be missing it.
If the parent of the compound body is not rotated, then the physics body is correct. No collision occurs.
If using cannon, everything works fine.
If using ammo, the mesh is rotated correctly, but the physics body is not.
If using oimo, both the mesh and physics body are not rotated correctly.
It’s quite hard to debug this, as the inspector does not show the physics body of the child, and I don’t know of any ways to determine the dimensions/rotation/position of the child physics body except by interaction with other objects.
878 var extendSize = impostor.getObjectExtendSize();
…the extendSize takes into consideration the parent’s rotation. This is incorrect, as parent’s rotation are ignored when adding the child into the compound shape.
I’m afraid I’m not sufficiently familiar with the physics code to know how best to fix this. Modifying getObjectExtendSize to ignore parent’s rotation would likely break other things. Perhaps reversing the parent’s rotation in _tmpAmmoTransform would work.
Reversing the child’s rotation in _tmpAmmoTransform will not work if the parent’s rotation is not a multiple of 90 degrees, as the extend size will remain incorrect.
Changing…
physicsImposter.ts, line 613:
let size = boundingInfo.boundingBox.extendSizeWorld.scale(2);
…into…
let size = boundingInfo.boundingBox.extendSize.scale(2);
…should fix things for ammo, and probably improve the situation for oimo. Not sure how that will affect cannon which is already working correctly.
Pretty sure now that changing extendSizeWorld to extendSize is the way to go. In this PG with a 45 degrees rotation, even cannon is behaving incorrectly. https://playground.babylonjs.com/#PRHF00#24
1. You must set and use rotationQuaternion when creating physics objects because physics engines rely only on them. 2. Setting a rotationQuaternion overwrites the use of rotation see warning
This is there to explain that the physics engines convert your rotation to quaternions so don’t use .rotation after setting a physics impostor. I do agree however that you can understand this sentence a bit differently
This is certainly a bug, and it seems like the extent size change is the way to go. There was a reason why we decided to use extendSizeWorld, so I will have to see when what should be used. The logic is clear thou
Want to report an issue on github so we can follow this? Link this thread as well when filing it.
Sure! I can file this bug, though I don’t think I understand it as well as you and @Cort. Is the bug that setting mesh.rotation before assigning its physicsImpostor results in incorrect collisions?
Posted an issue on github. I’ve also tested the extendSizeWorld to extendSize fix on a local copy, and it fixed things for both cannon and ammo. Oimo remains broken, …but less so.