浏览代码

fix partial

mitm001 5 年之前
父节点
当前提交
49fdaf22a7
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      docs/modules/tutorials/pages/beginner/hello_collision.adoc

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

@@ -268,7 +268,7 @@ As usual, you initialize the game in the `simpleInitApp()` method.
 
 Currently, jMonkeyEngine has two versions of link:https://pybullet.org/wordpress/[Bullet Physics]. A java port, link:http://jbullet.advel.cz/[jBullet], and link:https://en.wikipedia.org/wiki/Java_Native_Interface[JNI] (native) implementation. Although both accomplish the same goal of adding physics to your game, how you interact with each is quite different. This tutorial and it's examples use the JNI (native) implementation of physics. Which you choose is up to you.
 
-include::partial$source-structure-link.adoc[]
+include::ROOT:partial$source-structure-link.adoc[]
 
 How you initialize each is the same, only the methods used for manipulating objects is different. The first thing you do in every physics game is create a BulletAppState object. It gives you access to the jME3 Bullet integration which handles physical forces and collisions.