mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-25 15:35:23 +00:00
Merge remote-tracking branch 'origin/master'
This commit is contained in:
commit
6facce9d13
@ -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…
x
Reference in New Issue
Block a user