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

DestroyAllStaticGeometry() public method

Destroy all StaticGeometry instances.
public DestroyAllStaticGeometry ( ) : void
return void
		public void DestroyAllStaticGeometry()
		{
			foreach ( StaticGeometry geometry in this.staticGeometryList.Values )
			{
				geometry.Destroy();
			}
			this.staticGeometryList.Clear();
		}
SceneManager