Axiom.Core.Root.GetMovableObjectFactory C# (CSharp) 메소드

GetMovableObjectFactory() 공개 메소드

Get a MovableObjectFactory for the given type.
public GetMovableObjectFactory ( string typeName ) : MovableObjectFactory
typeName string /// The factory type to obtain. ///
리턴 MovableObjectFactory
		public MovableObjectFactory GetMovableObjectFactory( string typeName )
		{
			if ( !this.movableObjectFactoryMap.ContainsKey( typeName ) )
			{
				throw new AxiomException( "MovableObjectFactory for type " + typeName + " does not exist." );
			}

			return this.movableObjectFactoryMap[ typeName ];
		}