소스 검색

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.