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

RemoveCamera() public method

Removes the specified camera from the scene.
This method removes a previously added camera from the scene.
public RemoveCamera ( Camera camera ) : void
camera Camera Reference to the camera to remove.
return void
		public virtual void RemoveCamera( Camera camera )
		{
			cameraList.Remove( camera.Name );

			// notify all render targets
			this.targetRenderSystem.NotifyCameraRemoved( camera );
		}

Same methods

SceneManager::RemoveCamera ( string name ) : void
SceneManager