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

ExtractAllMovableObjectsByType() public method

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