Procházet zdrojové kódy

Added reference to sdk scene explorer

Simon Pincus před 6 roky
rodič
revize
496ccfba87

+ 4 - 2
src/docs/asciidoc/jme3/advanced/blender_gltf.adoc

@@ -119,11 +119,11 @@ Scene (Node)
         House_1 (Geometry)
             Roof (Material)
     Person_Armature (Node)
-        Animations (Animation Control)
+        Animations (AnimControl)
             Walk (Animation)
             Run (Animation)
         Person (Geometry)
-            Animations (Animation Control)
+            Animations (AnimControl)
                 Walk (Animation)
 ....
 
@@ -148,6 +148,8 @@ AnimChannel animChannel = animControl.createChannel();
 animChannel.setAnim("Run");
 ----
 
+If you import the model with the SDK, you can explore the scene graph using the Scene Explorer. See <<sdk/scene_explorer>> and <<jme3/advanced/traverse_scenegraph>> for more details.
+
 See <<jme3/advanced/animation>> for further details on using animations in your code.
 
 == Additional Reading