spotlightbase.c 181 B

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