Closed dror-g closed 4 months ago
I'll just add that the scene is already loaded before the AsyncSceneCollider is created, in an earlier game state, so it doesn't really have to wait for it.
(The only reason I'm using the async method is because creating the collider from GltfMesh was complicated. It worked, managed to get the Mesh and generate, but could not scale it for some reason..)
@dror-g FYI https://github.com/Jondolf/bevy_xpbd/pull/375 should fix the scaling issues at least
Amazing! These bevy-native helper functions really make bevy_xpbd a great choice for bevy physics, and I think spending time on them is well worth it.
Please feel free to close the issue, I don't know when I'll get a chance to confirm this myself..
Thank you!
Hi, seems like
Sensor
has no effect onAsyncSceneCollider
.Objects collide with it and cannot pass through it.
I've also tried using it as parent/child collider - With Async as parent - both colliders created, but Async still won't let objects through:
With Async as child - Async not created, only parent is created:
Also tried including AsyncSceneCollider in a Compound collider:
That throws an error:
Thank you for a great crate!!!