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

GetEntity() public method

Retreives the scene node with the specified name.
public GetEntity ( string name ) : Entity
name string
return Entity
		public Entity GetEntity( string name )
		{
			//Entity entity = entityList[ name ];
			/*
			 * if(entity == null)
			 *		throw new AxiomException("Entity '{0}' could not be found.",name);
			 * */
			//return entity;
			return (Entity)this.GetMovableObject( name, EntityFactory.TypeName );
		}
SceneManager