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