/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
- package away3d.core.partition
- {
-
- /**
- * NullNode is a node that performs no space partitioning, but simply stores all objects in a
- * list of leaf nodes. This partitioning system is most useful for simple content, or content that is always in the
- * screen, such as a 3d user interface.
- */
- public class NullNode extends NodeBase
- {
- /**
- * Creates a new NullNode object.
- */
- public function NullNode()
- {
- }
- }
- }