File size: 184 Bytes
24b81cb
 
 
 
 
 
 
1
2
3
4
5
6
7
class PointLightBase extends ScriptedLightBase
{
	void PointLightBase()
	{
		SetLightType(LightSourceType.PointLight); // This function must be called in constructor of the light!
	}
}