I’m now working on a project where I need to implement physics using Panda3D in C++. I’ve been exploring the available documentation and resources, but I’m looking for some suggestions on how to work on this task effectively.
I’m interested in below topics-
What physics engines or libraries are compatible with Panda3D for C++ development?
Are there any recommended frameworks or methodologies for integrating physics into C++ projects with Panda3D?
Any tips or insights from developers who have experience with C++ coding in Panda3D for implementing physics would be greatly appreciated.
Any of the integrated physics engines are useable from C++ as well.
You can also use any other physics engine that Panda3D doesn’t have specific support for, but you’d be responsible yourself for synchronizing the positions of the Panda3D nodes with the physics object in the physics engine. However, that does enable you to use other physics engines like Jolt, which is arguably superior to Bullet.