/src/away3d/core/partition/NullNode.as

http://github.com/away3d/away3d-core-fp11 · ActionScript · 18 lines · 9 code · 1 blank · 8 comment · 0 complexity · ad61bf8bd68a2b9a00c18f8374109f7d MD5 · raw file

  1. package away3d.core.partition
  2. {
  3. /**
  4. * NullNode is a node that performs no space partitioning, but simply stores all objects in a
  5. * list of leaf nodes. This partitioning system is most useful for simple content, or content that is always in the
  6. * screen, such as a 3d user interface.
  7. */
  8. public class NullNode extends NodeBase
  9. {
  10. /**
  11. * Creates a new NullNode object.
  12. */
  13. public function NullNode()
  14. {
  15. }
  16. }
  17. }