mirror of
https://github.com/OpenMW/openmw.git
synced 2025-06-20 16:41:33 +00:00
Add comments for weather IDs
This commit is contained in:
parent
1566f3568d
commit
8de3ce90a7
1 changed files with 10 additions and 10 deletions
|
@ -458,16 +458,16 @@ WeatherManager::WeatherManager(MWRender::RenderingManager& rendering, const MWWo
|
||||||
, mPlayingSoundID()
|
, mPlayingSoundID()
|
||||||
{
|
{
|
||||||
mWeatherSettings.reserve(10);
|
mWeatherSettings.reserve(10);
|
||||||
addWeather("Clear", fallback);
|
addWeather("Clear", fallback); // 0
|
||||||
addWeather("Cloudy", fallback);
|
addWeather("Cloudy", fallback); // 1
|
||||||
addWeather("Foggy", fallback);
|
addWeather("Foggy", fallback); // 2
|
||||||
addWeather("Overcast", fallback);
|
addWeather("Overcast", fallback); // 3
|
||||||
addWeather("Rain", fallback, "rain");
|
addWeather("Rain", fallback, "rain"); // 4
|
||||||
addWeather("Thunderstorm", fallback, "rain heavy");
|
addWeather("Thunderstorm", fallback, "rain heavy"); // 5
|
||||||
addWeather("Ashstorm", fallback, "ashstorm", "meshes\\ashcloud.nif");
|
addWeather("Ashstorm", fallback, "ashstorm", "meshes\\ashcloud.nif"); // 6
|
||||||
addWeather("Blight", fallback, "blight", "meshes\\blightcloud.nif");
|
addWeather("Blight", fallback, "blight", "meshes\\blightcloud.nif"); // 7
|
||||||
addWeather("Snow", fallback, "", "meshes\\snow.nif");
|
addWeather("Snow", fallback, "", "meshes\\snow.nif"); // 8
|
||||||
addWeather("Blizzard", fallback, "BM Blizzard", "meshes\\blizzard.nif");
|
addWeather("Blizzard", fallback, "BM Blizzard", "meshes\\blizzard.nif"); // 9
|
||||||
|
|
||||||
Store<ESM::Region>::iterator it = store.get<ESM::Region>().begin();
|
Store<ESM::Region>::iterator it = store.get<ESM::Region>().begin();
|
||||||
for(; it != store.get<ESM::Region>().end(); ++it)
|
for(; it != store.get<ESM::Region>().end(); ++it)
|
||||||
|
|
Loading…
Reference in a new issue