#import <CC3MeshNode.h>
Instance Methods | |
(CC3MeshNode *) | - getMeshNodeNamed: |
Properties | |
BOOL | isMeshNode |
CC3Node category extension to support CC3MeshNodes.
- (CC3MeshNode*) getMeshNodeNamed: | (NSString *) | aName |
Convenience method that retrieves the first node found with the specified name, anywhere in the structural hierarchy of descendants of this node (not just direct children), and returns the node cast as a CC3MeshNode.
The hierarchy search is depth-first.
This implementation simply invokes the getNodeNamed:, and casts the node returned as a CC3MeshNode. An assertion is raised if the node is not a CC3MeshNode.
Extends class CC3Node.
|
readnonatomicassign |
Indicates whether this node has 3D mesh data to be drawn.
Default value is NO. Subclasses that do draw 3D meshes will override to return YES.
Extends class CC3Node.