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

Update hello_animation.adoc

Fixed code format for tip under first exercise.
mitm001 9 лет назад
Родитель
Сommit
b1c23153b0
1 измененных файлов с 3 добавлено и 1 удалено
  1. 3 1
      src/docs/asciidoc/jme3/beginner/hello_animation.adoc

+ 3 - 1
src/docs/asciidoc/jme3/beginner/hello_animation.adoc

@@ -286,7 +286,9 @@ Make a mouse click trigger another animation sequence!
 Do you want to find out what animation sequences are available in the model? Use: 
 [source,java]
 ----
-for (String anim : control.getAnimationNames()) { System.out.println(anim); }
+for (String anim : control.getAnimationNames()) { 
+    System.out.println(anim); 
+}
 ----
 ====