소스 검색

add status to quote

mitm001 5 년 전
부모
커밋
9b6b895e69
1개의 변경된 파일6개의 추가작업 그리고 1개의 파일을 삭제
  1. 6 1
      docs/modules/ROOT/pages/jme3/beginner/hello_animation.adoc

+ 6 - 1
docs/modules/ROOT/pages/jme3/beginner/hello_animation.adoc

@@ -172,9 +172,11 @@ To check this, btn:[RMB] select your model and click "`Edit in SceneComposer`" i
 player.getChild("Subnode").getControl(AnimControl.class);
 ----
 
+[NOTE]
+====
 In response to a question about animations on different channels interefering with each other, *Nehon*, on the jME forum wrote,
 
-[quote, Nehon, forum post]
+[quote, Nehon, Team Leader: Retired]
 ____
 You have to consider channels as part of the skeleton that are animated. The default behavior is to use the whole skeleton for a channel.
 
@@ -186,6 +188,9 @@ Usually multiple channels are used to animate different part of the body. For ex
 
 In your case, where you want animations to chain for the whole skeleton, you just have to use one channel.
 ____
+====
+
+
 
 == Responding to Animation Events