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