mirror of https://github.com/axmolengine/axmol.git
44 lines
1.3 KiB
Lua
44 lines
1.3 KiB
Lua
|
|
--------------------------------
|
|
-- @module ParticleSmoke
|
|
-- @extend ParticleSystemQuad
|
|
-- @parent_module cc
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#ParticleSmoke] init
|
|
-- @param self
|
|
-- @return bool#bool ret (return value: bool)
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#ParticleSmoke] initWithTotalParticles
|
|
-- @param self
|
|
-- @param #int numberOfParticles
|
|
-- @return bool#bool ret (return value: bool)
|
|
|
|
--------------------------------
|
|
-- Create a smoke particle system.<br>
|
|
-- return An autoreleased ParticleSmoke object.
|
|
-- @function [parent=#ParticleSmoke] create
|
|
-- @param self
|
|
-- @return ParticleSmoke#ParticleSmoke ret (return value: cc.ParticleSmoke)
|
|
|
|
--------------------------------
|
|
-- Create a smoke particle system withe a fixed number of particles.<br>
|
|
-- param numberOfParticles A given number of particles.<br>
|
|
-- return An autoreleased ParticleSmoke object.<br>
|
|
-- js NA
|
|
-- @function [parent=#ParticleSmoke] createWithTotalParticles
|
|
-- @param self
|
|
-- @param #int numberOfParticles
|
|
-- @return ParticleSmoke#ParticleSmoke ret (return value: cc.ParticleSmoke)
|
|
|
|
--------------------------------
|
|
-- js ctor
|
|
-- @function [parent=#ParticleSmoke] ParticleSmoke
|
|
-- @param self
|
|
-- @return ParticleSmoke#ParticleSmoke self (return value: cc.ParticleSmoke)
|
|
|
|
return nil
|