Gameplay
Class Sunlight

source: C:\XIII\Gameplay\Classes\Sunlight.uc
Core.Object
   |
   +--Engine.Actor
      |
      +--Engine.Light
         |
         +--Gameplay.Sunlight
Direct Known Subclasses:None

class Sunlight
extends Engine.Light

//============================================================================= // Directional sunlight //=============================================================================

Source Code


00001	//=============================================================================
00002	// Directional sunlight
00003	//=============================================================================
00004	class Sunlight extends Light;
00005	
00006	#exec Texture Import File=Textures\SunIcon.pcx  Name=SunIcon Mips=Off MASKED=1
00007	
00008	
00009	defaultproperties
00010	{
00011	     Texture=Texture'Gameplay.SunIcon'
00012	     LightEffect=LE_Sunlight
00013	     bDirectional=True
00014	}

End Source Code