debugweatherrpcdata.c 978 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. class DebugWeatherRPCData
  2. {
  3. float m_FogValue = -1;
  4. float m_OvercastValue = -1;
  5. float m_RainValue = -1;
  6. float m_SnowfallValue = -1;
  7. float m_FogInterpolation = 0;
  8. float m_OvercastInterpolation = -1;
  9. float m_RainInterpolation = -1;
  10. float m_SnowfallInterpolation = -1;
  11. float m_FogDuration = -1;
  12. float m_OvercastDuration = -1;
  13. float m_RainDuration = -1;
  14. float m_SnowfallDuration = -1;
  15. float m_VolFogDistanceDensity = -1;
  16. float m_VolFogDistanceDensityTime = -1;
  17. float m_VolFogHeightDensity = -1;
  18. float m_VolFogHeightDensityTime = -1;
  19. float m_VolFogHeightBias = -1;
  20. float m_VolFogHeightBiasTime = -1;
  21. float m_StormDensity = -1;
  22. float m_StormThreshold = -1;
  23. float m_StormTimeOut = -1;
  24. float m_WindMagnitudeValue = -1;
  25. float m_WindMInterpolation = -1;
  26. float m_WindMDuration = -1;
  27. float m_WindDirectionValue = -1;
  28. float m_WindDInterpolation = -1;
  29. float m_WindDDuration = -1;
  30. }