- jMonkeyEngine 3.0 Cookbook
- Rickard Edén
- 226字
- 2021-09-03 10:00:45
Importing a model
Let's start off with a pretty basic scenario. We have this model, which we've exported from a 3D modeling package, and we would like to use it for our game. The first thing we need to do is convert it to the format that jMonkeyEngine 3 uses internally (.j3o
). The recommended format to use is .blend
coming from the open source modeling package Blender for which the SDK has extensive support. Another common format is .obj
for static models and Ogre-mesh XML files.
How to do it…
We can import a model by performing the following steps:
- Go to the File menu and select Import Model.
- Next, we need to choose the project we would like to import.
- After selecting the actual model to be imported, we get to preview the model and can make sure that all the assets are properly used.
- Finally, we select where to place it in the Project Assets folder structure.
How it works…
The importer converts the model to the internal .j3o
format. This is a binary format, which means it becomes nonreadable (compare it with a .obj
file, which can be edited in Notepad). The compactness of a binary file is necessary to keep memory consumption low. It becomes impossible to edit externally, though, so keeping the original files organized is a good idea!
- Instant Node Package Manager
- 信息安全技術
- 你必須知道的204個Visual C++開發問題
- Learning Hunk
- 全棧自動化測試實戰:基于TestNG、HttpClient、Selenium和Appium
- Cybersecurity Attacks:Red Team Strategies
- 移動互聯網軟件開發實驗指導
- 軟件工程與UML案例解析(第三版)
- Application Development with Swift
- Python Business Intelligence Cookbook
- ROS Robotics Projects
- Arduino Robotic Projects
- 智能優化算法與MATLAB編程實踐
- SAP HANA平臺應用開發
- LibGDX Cross:Platform Development Blueprints