Axiom.Core.SceneManager.DestroyAllStaticGeometry C# (CSharp) 메소드

DestroyAllStaticGeometry() 공개 메소드

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