Hello,
I'm still working through the beginner tutorials, of course so far I am overwhelmed with the outstanding features and performance of JME2.
I did find a few errors in the HelloLevelOfDetail tutorial…
Line 50(ish)
URL model =
HelloModelLoading.class.getClassLoader().
getResource("jmetest/data/model/maggie.obj");
Needs to be...
URL model =
HelloLOD.class.getClassLoader().
getResource("jmetest/data/model/maggie.obj");
and line 90(ish)...
// Clear the keyboard commands that can move the camera.
input = new InputHandler();
Needs to have the InputHandler imported...
import com.jme.input.InputHandler;
I looked through the forums but couldnt find anything reported on these errors.
Thanks!
:D