Difference between revisions of "Particles:removeParticles"

From GiderosMobile
m (Text replacement - "</source>" to "</syntaxhighlight>")
 
Line 1: Line 1:
 
__NOTOC__
 
__NOTOC__
<languages />
 
 
'''Available since:''' Gideros 2016.06<br/>
 
'''Available since:''' Gideros 2016.06<br/>
'''Class:''' [[Special:MyLanguage/Particles|Particles]]<br/>
+
'''Class:''' [[Particles]]<br/>
  
 
=== Description ===
 
=== Description ===
Remove particles by index (table) or as arguments.
+
Removes particles by index (table) or as arguments.
 +
<syntaxhighlight lang="lua">
 +
Particles:removeParticles(particleIndices)
 +
</syntaxhighlight>
  
remove all particles
+
To remove all particles:
 
*''particles:removeParticles()''
 
*''particles:removeParticles()''
  
 
+
To remove specific particles:
or remove specific particles:
 
 
*''particles:removeParticles({1,2,3})''
 
*''particles:removeParticles({1,2,3})''
  
 
equivalent to:
 
equivalent to:
 
*''particles:removeParticles(1,2,3)''
 
*''particles:removeParticles(1,2,3)''
<syntaxhighlight lang="lua">
 
Particles:removeParticles(particleIndices)
 
</syntaxhighlight>
 
  
 
=== Parameters ===
 
=== Parameters ===

Latest revision as of 21:50, 21 September 2023