forked from mirror/openmw-tes3mp
Fix weather particles not being cleared when changing from one particle effect to another
This commit is contained in:
parent
ab2df963e9
commit
bd1f3493d7
1 changed files with 8 additions and 2 deletions
|
@ -1432,6 +1432,14 @@ void SkyManager::setWeather(const WeatherResult& weather)
|
||||||
{
|
{
|
||||||
mCurrentParticleEffect = weather.mParticleEffect;
|
mCurrentParticleEffect = weather.mParticleEffect;
|
||||||
|
|
||||||
|
// cleanup old particles
|
||||||
|
if (mParticleEffect)
|
||||||
|
{
|
||||||
|
mParticleNode->removeChild(mParticleEffect);
|
||||||
|
mParticleEffect = NULL;
|
||||||
|
mParticleFader = NULL;
|
||||||
|
}
|
||||||
|
|
||||||
if (mCurrentParticleEffect.empty())
|
if (mCurrentParticleEffect.empty())
|
||||||
{
|
{
|
||||||
if (mParticleNode)
|
if (mParticleNode)
|
||||||
|
@ -1439,8 +1447,6 @@ void SkyManager::setWeather(const WeatherResult& weather)
|
||||||
mRootNode->removeChild(mParticleNode);
|
mRootNode->removeChild(mParticleNode);
|
||||||
mParticleNode = NULL;
|
mParticleNode = NULL;
|
||||||
}
|
}
|
||||||
mParticleEffect = NULL;
|
|
||||||
mParticleFader = NULL;
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue