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

GetCamera() public method

Retreives the camera with the specified name.
public GetCamera ( string name ) : Camera
name string
return Camera
		public virtual Camera GetCamera( string name )
		{
			Camera camera = this.cameraList[ name ];
			if ( camera == null )
			{
				throw new AxiomException( "Camera named '{0}' not found.", name );
			}

			return camera;
		}
SceneManager