Hi there,
I was wondering if it's possible to use Irrlicht's collision engine alone without the rendering components of the code? I have another game engine I am using, but I really like Irrlicht's collision engine and want to use it in it without any other unnecessary Irrlicht stuff.
If this isn't possible, then is there some information or source code somewhere else that the Irrlicht collision engine is based upon? Worst case scenario is that I will have to use another collision engine, but I want a simple one that doesn't feature Newtonian physics.
Thanks.
Using Irrlicht's collision engine in another engine
Re: Using Irrlicht's collision engine in another engine
A collision system is simply a abstract math library that calculates collisions in 2D/3D space. So yes you can theoretically use the Irrlicht collision system in a different game engine, but I think this would be a very silly thing to do. You should look into using bullet or ODE, I know you said you didn't want something with Newtonian physics but you can use these libraries for just collision detection.