add 'thunder_rate' weather property

This commit is contained in:
MihailRis
2025-02-28 18:48:21 +03:00
parent aed7c1c5b8
commit 0ea842580c
5 changed files with 29 additions and 2 deletions
+2
View File
@@ -23,6 +23,7 @@ dv::value WeatherPreset::serialize() const {
root["fog_dencity"] = fogDencity;
root["fog_curve"] = fogCurve;
root["clouds"] = clouds;
root["thunder_rate"] = thunderRate;
return root;
}
@@ -49,4 +50,5 @@ void WeatherPreset::deserialize(const dv::value& src) {
src.at("fog_dencity").get(fogDencity);
src.at("fog_curve").get(fogCurve);
src.at("clouds").get(clouds);
src.at("thunder_rate").get(thunderRate);
}