12345678910111213 |
- class XmasTreeLight extends PointLightBase
- {
- void XmasTreeLight()
- {
- SetVisibleDuringDaylight(false);
- SetRadiusTo( 12 );
- SetBrightnessTo( 0.50 );
- SetCastShadow(false);
- SetDiffuseColor(1.2, 1.0, 0.7);
- SetDancingShadowsMovementSpeed(0.005);
- SetDancingShadowsAmplitude(0.003);
- }
- }
|