Bullet physics dll

kurosuna

25-09-2011 23:44:55

Not directly related to mogre but is their anywhere I can get a bullet dll for bulletsharp without having to figure out how to build one myself.

tafkag

26-09-2011 12:00:05

I don't know of any binary bullet releases, but building bullet using cmake was surprisingly smooth for me, so give it a shot.

http://bulletphysics.org/mediawiki-1.5. ... om_scratch

Or do you just need the bulletsharp dll?
There are binary releases on the bulletsharp download page:
http://code.google.com/p/bulletsharp/downloads/list

smiley80

26-09-2011 20:06:40

You don't need to compile Bullet yourself, it's included in the BulletSharp dll.

kurosuna

27-09-2011 03:44:45

I don't know of any binary bullet releases, but building bullet using cmake was surprisingly smooth for me, so give it a shot.

http://bulletphysics.org/mediawiki-1.5. ... om_scratch

I tried this and got a project invalid error, I did get some of it to build but only got static link libraries

You don't need to compile Bullet yourself, it's included in the BulletSharp dll.

How does that work? I though .net and native link libraries had to be separate.

smiley80

27-09-2011 13:11:28

BulletSharp (like Mogre) is a mixed-mode assembly written in C++/CLI, which means it can contain native and managed code.