Axiom.Core.SceneManager.GetLight C# (CSharp) 메소드

GetLight() 공개 메소드

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