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

ExtractAllMovableObjectsByType() 공개 메소드

public ExtractAllMovableObjectsByType ( string typeName ) : void
typeName string
리턴 void
		public void ExtractAllMovableObjectsByType( string typeName )
		{
			MovableObjectCollection objectMap = this.GetMovableObjectCollection( typeName );
			lock ( objectMap )
			{
				objectMap.Clear();
			}
		}
SceneManager