diff options
Diffstat (limited to 'meta/3rd/Cocos4.0/cc.ParticleSun.lua')
-rw-r--r-- | meta/3rd/Cocos4.0/cc.ParticleSun.lua | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/meta/3rd/Cocos4.0/cc.ParticleSun.lua b/meta/3rd/Cocos4.0/cc.ParticleSun.lua new file mode 100644 index 00000000..ecc94c7a --- /dev/null +++ b/meta/3rd/Cocos4.0/cc.ParticleSun.lua @@ -0,0 +1,29 @@ + +---@class cc.ParticleSun :cc.ParticleSystemQuad +local ParticleSun={ } +cc.ParticleSun=ParticleSun + + + + +---* +---@return boolean +function ParticleSun:init () end +---* +---@param numberOfParticles int +---@return boolean +function ParticleSun:initWithTotalParticles (numberOfParticles) end +---* Create a sun particle system.<br> +---* return An autoreleased ParticleSun object. +---@return self +function ParticleSun:create () end +---* 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 +---@param numberOfParticles int +---@return self +function ParticleSun:createWithTotalParticles (numberOfParticles) end +---* js ctor +---@return self +function ParticleSun:ParticleSun () end
\ No newline at end of file |