You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While checking the code today I saw that during the physical world creation is not possible to specify the various internal parts (like the collision detection algortim dispatcher, the broad phase, the solver and so on) that the engine will use to perform its operation.
In bullet physics engine you have to initialize each part of the engine during the world creation.
For example this allow to inject an extended version of the default solver with particular capabilities that are not needed by a general purpose physics engine.
If this is not possible to do in nphysics right now, do you think that you will be ever interested in exposing all part of the engine to allow this kind of extensions?
The text was updated successfully, but these errors were encountered:
Hi! Yes, this is something that we intend to allow in the future. I'm currently modifying the design of the ncollide crate (used by nphysics for collision detection) to expose its parts explicitly (broad-phase, narrow-phase, collision object set, and contact graph). If the design ends up working well, I intend to do something similar for the nphysics World.
On Thu, Jun 13, 2019, 23:51 Sébastien Crozet ***@***.***> wrote:
Hi! Yes, this is something that we intend to allow in the future. I'm
currently modifying the design of the ncollide crate (used by nphysics for
collision detection) to expose its parts explicitly (broad-phase,
narrow-phase, collision object set, and contact graph). If the design ends
up working well, I intend to do something similar for the nphysics World.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#202>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AB7UYRZZ5EOLYBAVZRET2PDP2K6N7ANCNFSM4HXQORIQ>
.
While checking the code today I saw that during the physical world creation is not possible to specify the various internal parts (like the collision detection algortim dispatcher, the broad phase, the solver and so on) that the engine will use to perform its operation.
In bullet physics engine you have to initialize each part of the engine during the world creation.
For example this allow to inject an extended version of the default solver with particular capabilities that are not needed by a general purpose physics engine.
If this is not possible to do in nphysics right now, do you think that you will be ever interested in exposing all part of the engine to allow this kind of extensions?
The text was updated successfully, but these errors were encountered: