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

GetManualObject() public method

Retrieves the named ManualObject.
/// Thrown if the names does not exists in the collection. ///
public GetManualObject ( string name ) : ManualObject
name string /// The name of the object to retrieve. ///
return ManualObject
		public ManualObject GetManualObject( string name )
		{
			return (ManualObject)this.GetMovableObject( name, ManualObjectFactory.TypeName );
		}
SceneManager