Package | away3d.core.traverse |
Class | public class Traverser |
Inheritance | Traverser Object |
Subclasses | PrimitiveTraverser, ProjectionTraverser, TickTraverser |
Method | Defined By | ||
---|---|---|---|
Executed when the traverser is applied to the node. | Traverser | ||
Executed when the traverser enters the node. | Traverser | ||
Executed when the traverser leaves the node. | Traverser | ||
Determines if the specified node is required to be traversed. | Traverser |
apply | () | method |
public function apply(node:Object3D):void
Executed when the traverser is applied to the node.
Parameters
node:Object3D |
enter | () | method |
public function enter(node:Object3D):void
Executed when the traverser enters the node.
Parameters
node:Object3D |
leave | () | method |
public function leave(node:Object3D):void
Executed when the traverser leaves the node.
Parameters
node:Object3D |
match | () | method |
public function match(node:Object3D):Boolean
Determines if the specified node is required to be traversed.
Parameters
node:Object3D — The 3d object to be tested.
|
Boolean — The result of the test.
|