Search Issue Tracker
Fixed in 5.4.0
Votes
3
Found in
5.3.2f1
Issue ID
767786
Regression
Yes
[Shuriken] ParticleSystem.Stop() does not stop if the PS is not visible
Steps to reproduce:
1) Download and open scene 'ParticleTest-scene'
2) Play the scene and spawn a ParticleSystem (GUI)
3) Turn the Camera 90/105 degrees
4) Stop the ParticleSystem
5) Reset the Camera to a
Expected: Particle system is not running
Actual: Keeps running
Reproduced: 5.3.0f4, 5.3.2p2, 5.4.0b5
Not reproducible: 5.1.3p3, 5.2.4f1
Comments (4)
Add comment
All about bugs
View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.
Latest issues
- AssetBundles fail to load when running in Built Players for Mobile Devices
- UI elements with text gets bigger and grey when Player window is moved to another screen with different resolution
- System name accepts multiline text but crops it on confirmation, duplicates input, and shrinks the field when empty
- UI element scale and position are wrong in project build when DRS is changed with HDR and Software Dynamic Resolution enabled
- White lighting artifact when a point light with a small emission range and "Hard Shadows" touches an object while a directional light with "Soft Shadows" and another point light are present
Kodo
Apr 02, 2016 10:24
reproduced in 5.3.4f1.
Geeoff
Mar 24, 2016 14:59
For what it's worth, reproduced in 5.3.4f1.
Liviuss
Feb 08, 2016 20:45
Reproduced on 5.3.2p1
f-Schmitz
Feb 05, 2016 12:45
We found a workaround yesterday as we discovered the bug.
You can disable the emissionModule:
ParticleSystem.EmissionModule _module = mySystem.emission;
_module.enabled = false;
this has the expected results for mySystem.Stop() at all angles.