mirror of
https://github.com/GTAmodding/re3.git
synced 2025-07-05 13:24:09 +00:00
CBoat and friends
This commit is contained in:
parent
389123cff3
commit
2141247e08
12 changed files with 883 additions and 313 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue