Abstract class for all traverser that perform actions on the whole scene.
public function apply(node:Object3D):void
Executed when the traverser is applied to the node.
Parameters
public function enter(node:Object3D):void
Executed when the traverser enters the node.
Parameters
public function leave(node:Object3D):void
Executed when the traverser leaves the node.
Parameters
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.
|
Returns
| Boolean — The result of the test.
|