offroad_02frontlight.c 426 B

1234567891011121314151617181920
  1. class Offroad_02FrontLight extends CarLightBase
  2. {
  3. void Offroad_02FrontLight()
  4. {
  5. m_SegregatedBrightness = 5;
  6. m_SegregatedRadius = 75;
  7. m_SegregatedAngle = 90;
  8. m_SegregatedColorRGB = Vector(0.85, 0.85, 0.58);
  9. m_AggregatedBrightness = 10;
  10. m_AggregatedRadius = 100;
  11. m_AggregatedAngle = 120;
  12. m_AggregatedColorRGB = Vector(0.85, 0.85, 0.58);
  13. FadeIn(0.1);
  14. SetFadeOutTime(0.05);
  15. SegregateLight();
  16. }
  17. };