offroadhatchbackfrontlight.c 431 B

1234567891011121314151617181920
  1. class OffroadHatchbackFrontLight extends CarLightBase
  2. {
  3. void OffroadHatchbackFrontLight()
  4. {
  5. m_SegregatedBrightness = 5;
  6. m_SegregatedRadius = 55;
  7. m_SegregatedAngle = 110;
  8. m_SegregatedColorRGB = Vector(1.0, 0.8, 0.6);
  9. m_AggregatedBrightness = 10;
  10. m_AggregatedRadius = 75;
  11. m_AggregatedAngle = 120;
  12. m_AggregatedColorRGB = Vector(1.0, 0.8, 0.6);
  13. FadeIn(0.3);
  14. SetFadeOutTime(0.25);
  15. SegregateLight();
  16. }
  17. }