2014-03-10 14:04:58 +08:00
|
|
|
|
|
|
|
--------------------------------
|
|
|
|
-- @module ParticleFlower
|
2014-03-20 10:21:28 +08:00
|
|
|
-- @extend ParticleSystemQuad
|
2014-06-25 17:36:50 +08:00
|
|
|
-- @parent_module cc
|
2014-03-18 15:55:30 +08:00
|
|
|
|
2015-05-05 11:31:53 +08:00
|
|
|
--------------------------------
|
|
|
|
--
|
|
|
|
-- @function [parent=#ParticleFlower] init
|
|
|
|
-- @param self
|
|
|
|
-- @return bool#bool ret (return value: bool)
|
|
|
|
|
|
|
|
--------------------------------
|
|
|
|
--
|
|
|
|
-- @function [parent=#ParticleFlower] initWithTotalParticles
|
|
|
|
-- @param self
|
|
|
|
-- @param #int numberOfParticles
|
|
|
|
-- @return bool#bool ret (return value: bool)
|
|
|
|
|
2014-03-10 14:04:58 +08:00
|
|
|
--------------------------------
|
2015-03-23 16:29:35 +08:00
|
|
|
-- Create a flower particle system.<br>
|
|
|
|
-- return An autoreleased ParticleFlower object.
|
2014-03-10 14:04:58 +08:00
|
|
|
-- @function [parent=#ParticleFlower] create
|
|
|
|
-- @param self
|
|
|
|
-- @return ParticleFlower#ParticleFlower ret (return value: cc.ParticleFlower)
|
|
|
|
|
|
|
|
--------------------------------
|
2015-03-23 16:29:35 +08:00
|
|
|
-- Create a flower particle system withe a fixed number of particles.<br>
|
|
|
|
-- param numberOfParticles A given number of particles.<br>
|
2015-03-24 11:25:31 +08:00
|
|
|
-- return An autoreleased ParticleFlower object.<br>
|
|
|
|
-- js NA
|
2014-03-10 14:04:58 +08:00
|
|
|
-- @function [parent=#ParticleFlower] createWithTotalParticles
|
|
|
|
-- @param self
|
2014-09-02 13:45:07 +08:00
|
|
|
-- @param #int numberOfParticles
|
2014-03-10 14:04:58 +08:00
|
|
|
-- @return ParticleFlower#ParticleFlower ret (return value: cc.ParticleFlower)
|
|
|
|
|
2015-05-05 11:31:53 +08:00
|
|
|
--------------------------------
|
|
|
|
-- js ctor
|
|
|
|
-- @function [parent=#ParticleFlower] ParticleFlower
|
|
|
|
-- @param self
|
|
|
|
-- @return ParticleFlower#ParticleFlower self (return value: cc.ParticleFlower)
|
|
|
|
|
2014-03-10 14:04:58 +08:00
|
|
|
return nil
|