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

GetStaticGeometry() public method

Retrieve a previously created StaticGeometry instance.
public GetStaticGeometry ( string name ) : StaticGeometry
name string
return StaticGeometry
		public StaticGeometry GetStaticGeometry( string name )
		{
			StaticGeometry geometry;
			if ( !this.staticGeometryList.TryGetValue( name, out geometry ) )
			{
				throw new AxiomException( "StaticGeometry with name '" + name + "' not found!" );
			}
			else
			{
				return geometry;
			}
		}
SceneManager