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

RemoveBillboardSet() public method

Removes a BillboardSet from the scene with the specified name.
This method removes a previously added BillboardSet from the scene.
public RemoveBillboardSet ( string name ) : void
name string Name of the BillboardSet to remove.
return void
		public virtual void RemoveBillboardSet( string name )
		{
			this.DestroyMovableObject( name, BillboardSetFactory.TypeName );
		}

Same methods

SceneManager::RemoveBillboardSet ( BillboardSet billboardSet ) : void
SceneManager