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