Axiom.Core.Root.GetMovableObjectFactory C# (CSharp) Method

GetMovableObjectFactory() public method

Get a MovableObjectFactory for the given type.
public GetMovableObjectFactory ( string typeName ) : MovableObjectFactory
typeName string /// The factory type to obtain. ///
return 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 ];
		}