Difference between revisions of "Particles:removeParticles"

From GiderosMobile
 
(9 intermediate revisions by 3 users not shown)
Line 1: Line 1:
 
__NOTOC__
 
__NOTOC__
'''<translate>Available since</translate>:''' Gideros 2016.06<br/>
+
'''Available since:''' Gideros 2016.06<br/>
=== <translate>Description</translate> ===
+
'''Class:''' [[Particles]]<br/>
<translate>Remove particles by index in table or as arguments
 
  
remove all particles
+
=== Description ===
[[Special:MyLanguage/particles:removeParticles()|particles:removeParticles()]]
+
Removes particles by index (table) or as arguments.
 +
<syntaxhighlight lang="lua">
 +
Particles:removeParticles(particleIndices)
 +
</syntaxhighlight>
  
or remove specific partilces:
+
To remove all particles:
 +
*''particles:removeParticles()''
  
[[Special:MyLanguage/particles:removeParticles({1,2,3})|particles:removeParticles({1,2,3})]]
+
To remove specific particles:
 +
*''particles:removeParticles({1,2,3})''
  
or
+
equivalent to:
 +
*''particles:removeParticles(1,2,3)''
  
[[Special:MyLanguage/particles:removeParticles(1,2,3)|particles:removeParticles(1,2,3)]]</translate>
+
=== Parameters ===
<source lang="lua">
+
'''particleIndices''': (table or arguments) table or arguments of particle indices to remove<br/>
Particles:removeParticles(particle indeces)
+
 
</source>
+
{{Particles}}
=== <translate>Parameters</translate> ===
 
'''particle indeces''': (table or arguments) <translate>table or arguments of indexes to remove</translate> <br/>
 

Latest revision as of 21:50, 21 September 2023