浏览代码

Mentioned jme3-plugins to load xml model (#141)

Quazi Irfan 3 年之前
父节点
当前提交
92e26e5e48
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      docs/modules/tutorials/pages/beginner/hello_asset.adoc

+ 1 - 1
docs/modules/tutorials/pages/beginner/hello_asset.adoc

@@ -168,7 +168,7 @@ Clear existing text in the guiNode by detaching all its children.
 
 === Loading a Model
 
-Export your 3D model in a <<ROOT:getting-started/features.adoc#supported-external-file-types,Supported External File Type>> (.mesh.xml, .scene, .material, .skeleton.xml, .gltf) and place it in a subdirectory of `assets/Models/`. The following code sample goes into the `simpleInitApp()` method.
+Export your 3D model in a <<ROOT:getting-started/features.adoc#supported-external-file-types,Supported External File Type>> (.mesh.xml, .scene, .material, .skeleton.xml, .gltf) and place it in a subdirectory of `assets/Models/`. The following code sample goes into the `simpleInitApp()` method. Note that "jme3-plugins" library is needed to load these file types.
 
 [source,java]
 ----