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