Axiom.Core.SceneManager.GetCamera C# (CSharp) Метод

GetCamera() публичный Метод

Retreives the camera with the specified name.
public GetCamera ( string name ) : Camera
name string
Результат 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