Abstract
Create a renderable node in a scene graph.
Optional
parent: NodeThe parent of the node. Should only be undefined
for the root of a scene graph.
Whether or not the node should be enabled.
Whether or not the node may be not completely opaque.
Whether or not the node belongs to a user interface or a 2D scene.
Whether or not this node is enabled. Disabled nodes and their descendents are not included in traversals.
The transformation matrix of this node relative to its parent.
Whether or not this node may be not completely opaque.
Whether or not this node belongs to a user interface or a 2D scene.
The children of this node. Do not modify this value directly (use addChild
and removeChild
instead).
The parent of this node.
The rotation of this node relative to its parent.
The rotation of this node relative to its parent.
The scale of this node relative to its parent.
The scale of this node relative to its parent.
The translation of this node relative to its parent.
The translation of this node relative to its parent.
Reset this node's transformation relative to its parent.
Abstract
renderRender this node.
The world matrix of this node.
Rotate this node relative to its parent.
The number of radians to rotate by.
The axis to rotate around.
Rotate this node around the X-axis relative to its parent.
The number of radians to rotate by.
Rotate this node around the Y-axis relative to its parent.
The number of radians to rotate by.
Rotate this node around the Z-axis relative to its parent.
The number of radians to rotate by.
Scale this node relative to its parent.
The scaling factor.
Position this node such that it is pointing at a target position.
The new position of this node.
The position for this node to point at.
The up vector.
Translate this node relative to its parent.
The translation vector.
A node in a scene graph that can be rendered.