Difference between revisions of "Particles:removeParticles"

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

Revision as of 06:31, 24 October 2020