Axiom.Core.SceneManager.GetSceneNode C# (CSharp) Method

GetSceneNode() public method

Retreives the scene node with the specified name.
public GetSceneNode ( string name ) : SceneNode
name string
return SceneNode
		public SceneNode GetSceneNode( string name )
		{
			SceneNode node = this.sceneNodeList[ name ];
			/*
			 * if(node == null)
			 *		throw new AxiomException("Scene node '{0}' could not be found.",name);
			 * */
			return node;
		}
SceneManager