Axiom.Core.SceneManager.ExtractAllMovableObjectsByType C# (CSharp) Méthode

ExtractAllMovableObjectsByType() public méthode

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