Difference between revisions of "Particles:setTexture"
From GiderosMobile
m |
m (Text replacement - "</source>" to "</syntaxhighlight>") |
||
(2 intermediate revisions by the same user not shown) | |||
Line 5: | Line 5: | ||
=== Description === | === Description === | ||
Sets a texture to all particles. | Sets a texture to all particles. | ||
− | < | + | <syntaxhighlight lang="lua"> |
− | Particles:setTexture(texture) | + | Particles:setTexture(texture,slot) |
− | </ | + | </syntaxhighlight> |
=== Parameters === | === Parameters === | ||
'''texture''': (TextureBase) texture to use in particles<br/> | '''texture''': (TextureBase) texture to use in particles<br/> | ||
+ | '''slot''': (number) the texture slot that the texture should be associated to. Leave empty or set to 0 for main texture, or if you don't use a specific shader '''optional''' (Since Gideros 2022.5)<br/> | ||
{{Particles}} | {{Particles}} |
Latest revision as of 14:32, 13 July 2023
Available since: Gideros 2016.06
Class: Particles
Description
Sets a texture to all particles.
Particles:setTexture(texture,slot)
Parameters
texture: (TextureBase) texture to use in particles
slot: (number) the texture slot that the texture should be associated to. Leave empty or set to 0 for main texture, or if you don't use a specific shader optional (Since Gideros 2022.5)
- Particles
- Particles.new
- Particles:addParticles
- Particles:clearTexture
- Particles:getDeadParticles
- Particles:getNearestParticle
- Particles:getNumParticles
- Particles:getParticleAcceleration
- Particles:getParticleAngle
- Particles:getParticleColor
- Particles:getParticleDecay
- Particles:getParticleExtra
- Particles:getParticlePosition
- Particles:getParticleSize
- Particles:getParticleSpeed
- Particles:getParticleTag
- Particles:getParticleTtl
- Particles:getParticles
- Particles:isPaused
- Particles:removeParticles
- Particles:scaleParticles
- Particles:setParticleAcceleration
- Particles:setParticleAngle
- Particles:setParticleColor
- Particles:setParticleDecay
- Particles:setParticleExtra
- Particles:setParticlePosition
- Particles:setParticleSize
- Particles:setParticleSpeed
- Particles:setParticleTag
- Particles:setParticleTtl
- Particles:setPaused
- Particles:setTexture