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

CreateStaticGeometry() public method

Creates a StaticGeometry instance suitable for use with this SceneManager.
StaticGeometry is a way of batching up geometry into a more efficient form at the expense of being able to move it. Please read the StaticGeometry class documentation for full information.
public CreateStaticGeometry ( string name, int logLevel ) : StaticGeometry
name string The name to give the new object
logLevel int
return StaticGeometry
	    public StaticGeometry CreateStaticGeometry( string name, int logLevel )
		{
			// Check not existing
			if ( this.staticGeometryList.ContainsKey( name ) )
			{
				throw new AxiomException( "StaticGeometry with name '" + name + "' already exists!" );
			}
			StaticGeometry geometry = new StaticGeometry( this, name, logLevel );
			this.staticGeometryList[ name ] = geometry;
			return geometry;
		}
SceneManager