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

GetLight() public method

Retreives the light with the specified name.
public GetLight ( string name ) : Light
name string
return Light
		public virtual Light GetLight( string name )
		{
			return (Light)this.GetMovableObject( name, LightFactory.TypeName );
		}
SceneManager