summaryrefslogtreecommitdiff
path: root/meta/3rd/Cocos4.0/cc.ParticleFlower.lua
diff options
context:
space:
mode:
Diffstat (limited to 'meta/3rd/Cocos4.0/cc.ParticleFlower.lua')
-rw-r--r--meta/3rd/Cocos4.0/cc.ParticleFlower.lua29
1 files changed, 29 insertions, 0 deletions
diff --git a/meta/3rd/Cocos4.0/cc.ParticleFlower.lua b/meta/3rd/Cocos4.0/cc.ParticleFlower.lua
new file mode 100644
index 00000000..b2422cbb
--- /dev/null
+++ b/meta/3rd/Cocos4.0/cc.ParticleFlower.lua
@@ -0,0 +1,29 @@
+
+---@class cc.ParticleFlower :cc.ParticleSystemQuad
+local ParticleFlower={ }
+cc.ParticleFlower=ParticleFlower
+
+
+
+
+---*
+---@return boolean
+function ParticleFlower:init () end
+---*
+---@param numberOfParticles int
+---@return boolean
+function ParticleFlower:initWithTotalParticles (numberOfParticles) end
+---* Create a flower particle system.<br>
+---* return An autoreleased ParticleFlower object.
+---@return self
+function ParticleFlower:create () end
+---* Create a flower particle system withe a fixed number of particles.<br>
+---* param numberOfParticles A given number of particles.<br>
+---* return An autoreleased ParticleFlower object.<br>
+---* js NA
+---@param numberOfParticles int
+---@return self
+function ParticleFlower:createWithTotalParticles (numberOfParticles) end
+---* js ctor
+---@return self
+function ParticleFlower:ParticleFlower () end \ No newline at end of file