Просмотр исходного кода

Update hello_input_system.adoc

Test to see if fixed Admonition delimited properly.
mitm001 9 лет назад
Родитель
Сommit
fbdb278676
1 измененных файлов с 1 добавлено и 0 удалено
  1. 1 0
      src/docs/asciidoc/jme3/beginner/hello_input_system.adoc

+ 1 - 0
src/docs/asciidoc/jme3/beginner/hello_input_system.adoc

@@ -266,6 +266,7 @@ Mappings registered to the *ActionListener* are digital either-or actions – 
 *  Example: Pause button, shooting, selecting, jumping, one-time click interactions.
 
 [TIP]
+
 ====
 It's very common that you want an action to be only triggered once, in the moment when the key is _released_. For instance when opening a door, flipping a boolean state, or picking up an item. To achieve that, you use an `ActionListener` and test for `… && !keyPressed`. For an example, look at the Pause button code: