소스 검색

Fixed format error from Antora conversion.

mitm001 4 년 전
부모
커밋
eaadca23dd
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      docs/modules/core/pages/app/state/application_states.adoc

+ 2 - 2
docs/modules/core/pages/app/state/application_states.adoc

@@ -81,7 +81,7 @@ JME3 comes with a BulletAppState that implements Physical behaviour (using the j
 == AppState
 
 The AppState interface lets you initialize sets of objects, and hook a set of continuously executing code into the main loop.
-[cols="25,75", options="header"]
+[cols="50,50", options="header"]
 |===
 
 a|AppState Method
@@ -89,7 +89,7 @@ a|Usage
 
 a|initialize(asm,app)
 a|When this AppState is added to the game, the RenderThread initializes the AppState and then calls this method. You can modify the scene graph from here (e.g. attach nodes). To get access to the main app, call:
-  |
+a|
 [source,java]
 ----
 super.initialize(stateManager, app);