Im trying to use the world importer by following this guide:
http://bulletphysics.org/mediawiki-1.5.8/index.php/Bullet_binary_serialization#Loading_a_.bullet_file.2C_creating_objects_and_adding_them_to_the_worldCode:
btBulletWorldImporter* fileLoader = new btBulletWorldImporter(m_dynamicsWorld);
fileLoader->loadFile("C:/testFile.bullet");
Im getting an access violation while using the loadFile() method with the provided testFile.bullet,
the verbose output shows this:
http://pastebin.com/T1j1AFfcI imported this libs and added all include-paths:
BulletWorldImporter, BulletFileLoader, BulletDynamics, BulletCollision, LinearMath
am i doing something wrong?