Package | away3d.core.partition |
Class | public class CameraNode |
Inheritance | CameraNode EntityNode NodeBase Object |
Method | Defined By | ||
---|---|---|---|
CameraNode(camera:Camera3D)
Creates a new CameraNode object. | CameraNode | ||
acceptTraverser(traverser:PartitionTraverser):void [override]
Allows the traverser to visit the current node. | CameraNode | ||
Adds a node to the tree. | NodeBase | ||
Finds the partition that contains (or should contain) the given entity. | NodeBase | ||
isInFrustum(camera:Camera3D):Boolean [override]
Tests if the current node is at least partly inside the frustum. | CameraNode | ||
removeFromParent():void
Detaches the node from its parent. | EntityNode | ||
removeNode(node:NodeBase):void
Removes a child node from the tree. | NodeBase |
CameraNode | () | Constructor |
public function CameraNode(camera:Camera3D)
Creates a new CameraNode object.
Parameterscamera:Camera3D — The camera to be contained in the node.
|
acceptTraverser | () | method |
override public function acceptTraverser(traverser:PartitionTraverser):void
Allows the traverser to visit the current node. If the traverser's enterNode method returns true, the traverser will be sent down the child nodes of the tree. This method should be overridden if the order of traversal is important (such as for BSP trees) - or if static child nodes are not added using addNode, but are linked to separately.
Parameters
traverser:PartitionTraverser — The traverser visiting the node.
|
isInFrustum | () | method |
override public function isInFrustum(camera:Camera3D):Boolean
Tests if the current node is at least partly inside the frustum.
Parameters
camera:Camera3D — The raw data of the view projection matrix
|
Boolean — Whether or not the node is at least partly inside the view frustum.
|