mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-29 22:15:32 +00:00
Merge remote-tracking branch 'origin/master'
This commit is contained in:
commit
6facce9d13
2 changed files with 7 additions and 2 deletions
|
@ -1550,11 +1550,13 @@ void SkyManager::setWeather(const WeatherResult& weather)
|
|||
{
|
||||
mNextClouds = weather.mNextCloudTexture;
|
||||
|
||||
std::string texture = Misc::ResourceHelpers::correctTexturePath(mNextClouds, mSceneManager->getVFS());
|
||||
if (!mNextClouds.empty())
|
||||
{
|
||||
std::string texture = Misc::ResourceHelpers::correctTexturePath(mNextClouds, mSceneManager->getVFS());
|
||||
|
||||
if (!texture.empty())
|
||||
mCloudUpdater2->setTexture(mSceneManager->getTextureManager()->getTexture2D(texture,
|
||||
osg::Texture::REPEAT, osg::Texture::REPEAT));
|
||||
}
|
||||
}
|
||||
|
||||
if (mCloudBlendFactor != weather.mCloudBlendFactor)
|
||||
|
|
|
@ -158,6 +158,9 @@ Weather::Weather(const std::string& name,
|
|||
else
|
||||
mAmbientLoopSoundID = fallback.getFallbackString("Weather_" + name + "_Ambient_Loop_Sound_ID");
|
||||
|
||||
if (Misc::StringUtils::ciEqual(mAmbientLoopSoundID, "None"))
|
||||
mAmbientLoopSoundID.clear();
|
||||
|
||||
/*
|
||||
Unhandled:
|
||||
Rain Diameter=600 ?
|
||||
|
|
Loading…
Reference in a new issue