mirror of
https://github.com/halpz/re3.git
synced 2025-07-21 16:49:48 +00:00
CBoat and friends
This commit is contained in:
@ -98,5 +98,6 @@ public:
|
||||
};
|
||||
|
||||
extern bool clearWaterDrop;
|
||||
extern int32 numWaterDropOnScreen;
|
||||
|
||||
VALIDATE_SIZE(CParticle, 0x58);
|
||||
|
@ -279,7 +279,7 @@ void CWeather::Update(void)
|
||||
}
|
||||
|
||||
Wind = InterpolationValue * Windiness[NewWeatherType] + (1.0f - InterpolationValue) * Windiness[OldWeatherType];
|
||||
WindClipped = Max(1.0f, Wind);
|
||||
WindClipped = Min(1.0f, Wind);
|
||||
|
||||
if (CClock::GetHours() == 20)
|
||||
TrafficLightBrightness = CClock::GetMinutes() / 60.0f;
|
||||
|
Reference in New Issue
Block a user