"Hello SimpleApplication" tutorial

Hello!



Just wanted to note that one line of code of the “Hello SimpleApplication” tutorial included in the SDK misses a part:



[java]Box(Vector3f.ZERO, 1, 1, 1); // create cube shape at the origin[/java]



According to the tutorial on the website it should be:



[java]Box b = new Box(Vector3f.ZERO, 1, 1, 1); // create cube shape at the origin[/java]



Cheers

1 Like

http://jmonkeyengine.googlecode.com/svn/trunk/engine/src/test/jme3test/helloworld/HelloJME3.java



[java]Box b = new Box(Vector3f.ZERO, 1, 1, 1); // create cube shape at the origin[/java]



thanks but seems to be up to date now.

Have you updated your sdk? perhaps your using an old jMETest project

2 Likes

I just downloaded the SDK, I’m using the latest version. I’m talking about the tutorial in the Help window, not about the jMETest project.



Btw, it’s missing there twice. In both examples.