Hide Particles
Hide a particle system animation
Description
'hide particles'
This hide
action will stop the currently shown particle system. To learn more about the particle systems, read the Show Particles documentation.
Action ID: Particles::Hide
Reversible: Yes
Requires User Interaction: No
Parameters
None
Examples
The following sample will show the particle system named snow, previously declared on the particles action configuration and then hide it.
Monogatari.script ({
'Start': [
'show particles snow',
'Snow is now falling from the sky!',
'hide particles',
'There is no more snow :('
'end'
]
});
Last updated
Was this helpful?