Hi all… first post here…
I`ve used ODE a fair bit with C++ and had a lot fo fun with it.
I`m currently trying to convert some of my old dodgy demos across into java for a uni project.
I`ve downloaded the latest natives and .jar and have no problems compiling the code, but when I try to execute the program I get this error…
java.lang.UnsatisfiedLinkError: dWorldCreate
at org.odejava.ode.OdeJNI.dWorldCreate(Native Method)
at org.odejava.ode.Ode.dWorldCreate(Ode.java:526)
at org.odejava.World.(World.java:112)
at MainGame.initialise(MainGame.java:124)
at MainGame.main(MainGame.java:63)
There`s obviously some problem with runtime linking to the ODE native…
I`m using the opengl Java bindings no problem and they work a treat.
Has anyone else encountered this problem?
Cheers.