Testing out JmonkeyEngine to make a game in Scala with Akka Actors within a pure FP layer
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
575 B

4 years ago
  1. package com.jme3.scene
  2. import com.jme3.animation.Skeleton
  3. package object debug {
  4. object SkeletonDebugger {
  5. /**
  6. * Creates a debugger with no length data. The wires will be a connection between the bones' heads only.
  7. * The points will show the bones' heads only and no dotted line of inter bones connection will be visible.
  8. * @param name
  9. * the name of the debugger's node
  10. * @param skeleton
  11. * the skeleton that will be shown
  12. */
  13. def apply(name: String, skeleton: Skeleton) = new SkeletonDebugger(name, skeleton)
  14. }
  15. }