CopperLicht API Documentation
Class CL3D.MeshSceneNode
A scene node displaying a static Mesh.
Extends
CL3D.SceneNode.
Method Attributes | Method Name and Description |
---|---|
createClone(newparent, oldNodeId, newNodeId)
|
|
Get the axis aligned, not transformed bounding box of this node.
|
|
getMesh()
Returns the Mesh drawn by this scene node.
|
|
getType()
Returns the type string of the scene node.
|
|
setMesh(m)
Sets the Mesh which should be drawn by this scene node.
|
- Methods borrowed from class CL3D.SceneNode:
- addAnimator, addChild, getAbsolutePosition, getAbsoluteTransformation, getAnimatorOfType, getAnimators, getChildren, getMaterial, getMaterialCount, getParent, getRelativeTransformation, getTransformedBoundingBox, init, isActuallyVisible, OnAnimate, OnRegisterSceneNode, removeAnimator, removeChild, render, updateAbsolutePosition
Method Detail
createClone(newparent, oldNodeId, newNodeId)
- Parameters:
- newparent
- oldNodeId
- newNodeId
{CL3D.Box3d}
getBoundingBox()
Get the axis aligned, not transformed bounding box of this node.
This means that if this node is an animated 3d character, moving in a room, the bounding box will
always be around the origin. To get the box in real world coordinates, just transform it with the matrix
you receive with getAbsoluteTransformation() or simply use getTransformedBoundingBox(), which does the same.
- Returns:
- {CL3D.Box3d} Bounding box of this scene node.
{CL3D.Mesh}
getMesh()
Returns the Mesh drawn by this scene node.
- Returns:
- {CL3D.Mesh} the 3d mesh of this scene node
{String}
getType()
Returns the type string of the scene node.
Returns 'mesh' for the mesh scene node.
- Returns:
- {String} type name of the scene node.
setMesh(m)
Sets the Mesh which should be drawn by this scene node.
- Parameters:
- {CL3D.Mesh} m
- the mesh to draw from now on