Search Issue Tracker
By Design
Votes
0
Found in
2020.3
2020.3.25f1
2021.2
2022.1
2022.2
Issue ID
1395511
Regression
No
Warnings are logged when entering Play Mode if Particle System is using "Sub Emitter" and having Particles System as a child
How to reproduce:
1. Open the user attached project
2. Enter Play Mode
3. Observe the Console window
Expected result: No warnings
Actual result: "Sub-emitters may not use stop actions. The Stop action will not be executed." warnings appear
Reproducible with: 2020.3.31f1, 2021.2.16f1, 2022.1.0b12, 2022.2.0b8
Coult not test with: 2019.4.36f1 (Errors after downgrade)
Note: Not reproducible if disabling child object (Particle System)
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
- Articulation Body with 'Revolute' Joint Type has erratic behavior when Upper Limit is set to above 360
- WebGL Player fails to render Scene when Terrain with Detail Mesh is added and WebGPU Graphics API is used
- Inconsistent errors are logged when different types are passed into the Query "Q<>" method in UIToolkit and the ancestor VisualElement is null
- Crash on GetMaterialPropertyByIndex when opening a specific Scene
- Discrepancies in the styling are present when using a TSS file instead of a USS file in custom EditorWindow
Resolution Note:
The problem is not that you've called Stop (which, as you say, you haven't, and didn't even know existed)
A reminder of the message we are seeing:
"Sub-emitters may not use stop actions. The Stop action will not be executed."
The problem is that you have set a Stop Action on a Sub-Emitter. The message is telling you that this is not allowed.
Clicking on the message highlights the systems at fault. They are called "Crackle" and "Flash". They are sub-emitters of "detonationCrackles" and use the Destroy Stop Action.
Setting Destroy on the parent system is sufficient (which you already have done) it should destroy itself and all its sub-emitters when it's finished.
So just set the Stop Action on those Sub-Emitters back to None and you should be good to go!