Axiom.Core.SceneManager.GetManualObject C# (CSharp) 메소드

GetManualObject() 공개 메소드

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. ///
리턴 ManualObject
		public ManualObject GetManualObject( string name )
		{
			return (ManualObject)this.GetMovableObject( name, ManualObjectFactory.TypeName );
		}
SceneManager