pointlightbase.c 184 B

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