Difference between revisions of "Particles:removeParticles"

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

Latest revision as of 21:50, 21 September 2023