- jMonkeyEngine 3.0 Cookbook
- Rickard Edén
- 277字
- 2021-09-03 10:00:45
Setting up a project
The jMonkeyEngine SDK is based around the NetBeans environment. Users familiar with the NetBeans environment will probably have little trouble finding their way around the jMonkeyEngine SDK. For those with no previous experience, some pointers on how to get started might be in place. In this recipe, we'll create a project that can access the jMonkeyEngine test-data library. By doing so, we will have some assets available from the start that can be used to try out many of the recipes.
Getting ready
Before setting up a project, we need to download the SDK. Doing so is as easy as going to http://hub.jmonkeyengine.org/downloads/ and selecting a suitable package for your operating system.
After downloading and installing the package, we're ready to go!
How to do it...
We can set up a project by performing the following steps:
- First of all, find the Projects window.
- Right-click somewhere inside it and select New Project.
- In the window that appears, select JME3 from Categories and BasicGame from Projects.
- On the next screen, choose a suitable name for the project and click on Finish to create it.
- The project should now appear in the Projects window. Right-click on it and select Properties from the menu.
- Select the Libraries option, click on the Add Library… button, and find the
jme3-test-data
library from the list.
How it works...
When the project is created, it sets up the basic necessities for a jMonkeyEngine project. You will get a Project Assets folder where any content can be placed in its subfolders. It also creates the Main.java
file based on the SimpleApplication
class. This is the starting point for your application.
- PyTorch自然語言處理入門與實戰
- 編寫高質量代碼:改善Python程序的91個建議
- NativeScript for Angular Mobile Development
- jQuery從入門到精通 (軟件開發視頻大講堂)
- Java:Data Science Made Easy
- Learning Laravel 4 Application Development
- Data Analysis with Stata
- HTML5+CSS3+JavaScript Web開發案例教程(在線實訓版)
- Ext JS 4 Web Application Development Cookbook
- Hands-On JavaScript for Python Developers
- Deep Learning with R Cookbook
- Microsoft XNA 4.0 Game Development Cookbook
- 趣學數據結構
- JavaScript高級程序設計(第4版)
- iOS應用逆向工程:分析與實戰