mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
Removed debug output
This commit is contained in:
parent
428baefc2c
commit
1db9f055e2
@ -24,12 +24,12 @@ _windSpeed = _min_wind_speed + (_max_wind_speed - _min_wind_speed) * _ratio;
|
||||
|
||||
//GVAR(wind_speed_debug_output) pushBack _windspeed;
|
||||
//copyToClipboard Str(GVAR(wind_speed_debug_output));
|
||||
|
||||
/*
|
||||
systemChat " ";
|
||||
systemChat format["(Min/Current/Max) : (%1/%2/%3)", Round(_min_wind_speed * 10) / 10, Round(_windSpeed * 10) / 10, Round(_max_wind_speed * 10) / 10];
|
||||
systemChat format["Direction: %1", Round(_windDirection)];
|
||||
systemChat format["(Period/PeriodPosition) : (%1/%2)", Round(_period), Round(_periodPosition)];
|
||||
systemChat format["Ratio: %1", _ratio];
|
||||
systemChat " ";
|
||||
|
||||
*/
|
||||
[-1 * sin(_windDirection) * _windSpeed, -1 * cos(_windDirection) * _windSpeed, 0]
|
||||
|
@ -18,4 +18,4 @@ setWind [ACE_wind select 0, ACE_wind select 1, true];
|
||||
// Set waves: 0 when no wind, 1 when wind >= 16 m/s
|
||||
1 setWaves (((vectorMagnitude ACE_wind) / 16.0) min 1.0);
|
||||
|
||||
hintSilent format["Wind: %1\nACE_wind: %2\nDeviation: %3 (m/s)", wind, ACE_wind, Round((vectorMagnitude (ACE_wind vectorDiff wind)) * 1000) / 1000];
|
||||
//hintSilent format["Wind: %1\nACE_wind: %2\nDeviation: %3 (m/s)", wind, ACE_wind, Round((vectorMagnitude (ACE_wind vectorDiff wind)) * 1000) / 1000];
|
||||
|
Loading…
Reference in New Issue
Block a user