Good morning i won to start worcing serios with JMonkey to lern his power but first i must instl component i need help
******I READE "Chapter 1 - Getting Started" 5 time but i cant do it well if you give me picture will be superr BEST ****
1.Java Compiler and Runtime Environment
**************
I have this component from wenh i start with JAVA this problem is check out
**************
2.CVS Source Code Control Utility
***********************
What is this why i need it and pleas give me direct licn for dawnloud
***********************
3.Ant Build System
The same
***********************
What is this why i need it and pleas give me direct licn for dawnloud
***********************
4.jME Source Code
What is this sors code and were to find it
5.WinCVS what is this and why i need it
And final I worke with JCreator LE is this is GOOD program or i mast jump on NetBeans
First of all, i would try to learn general concepts of software development
Then use babelfish to at least check your spelling to some degree when translating from a foreign language to English.
Also, use Google to your advantage for "terms" you do not understand, then search the wiki for all the answers to your jME related questions.
I would strongly suggest using Eclipse and following the guide:
http://www.jmonkeyengine.com/wiki/doku.php?id=setting_up_eclipse_to_build_jme
To download, build and develop for jME.
TY very mach
I start to folou this Eclipse tut but i stopt in STEP 10 and i want to aske were to RIGHT CLIC
your at step 5 not 10.
try again
http://www.jmonkeyengine.com/wiki/doku.php?id=setting_up_eclipse_to_build_jme
No no I create evriting in step 5 6 7 8 and finaly i saw a progres bar in step 9 and nau next step is 10 i dont nou what i mast see
Super cool finaly success
BUT nau just tell me hau to start to write code
Maiby i mast du this
I du it bu when i write this code is a simple start Jme code i dont nou where is compail button
import com.jme.app.SimpleGame;
import com.jme.scene.shape.Box;
import com.jme.math.Vector3f;
/**
* Started Date: Jul 20, 2004<br><br>
* Simple HelloWorld program for jME
*
* @author Jack Lindamood
*/
public class HelloWorld extends SimpleGame{
public static void main(String[] args) {
HelloWorld app = new HelloWorld(); // Create Object
// Signal to show properties dialog
app.setDialogBehaviour(SimpleGame.ALWAYS_SHOW_PROPS_DIALOG);
app.start(); // Start the program
}
protected void simpleInitGame() {
// Make a box
Boxb = new Box("Mybox",
new Vector3f(0,0,0),
new Vector3f(1,1,1));
rootNode.attachChild(b); // Put it in the scene graph
}
}
HELP
What you should do is create a new project, and then right-click on it… go to the tab about which projects to add to the path of this project, and add the jme one. You would also have to add the -Djava.library.path=… argument to the VM as you did in the jme project.