summaryrefslogtreecommitdiff
path: root/meta/3rd/Cocos4.0/library/cc.ParticleExplosion.lua
blob: 6d3cada56251b38fd103e1eab9fea6109531ed40 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
---@meta

---@class cc.ParticleExplosion :cc.ParticleSystemQuad
local ParticleExplosion={ }
cc.ParticleExplosion=ParticleExplosion




---* 
---@return boolean
function ParticleExplosion:init () end
---* 
---@param numberOfParticles int
---@return boolean
function ParticleExplosion:initWithTotalParticles (numberOfParticles) end
---*  Create a explosion particle system.<br>
---* return An autoreleased ParticleExplosion object.
---@return self
function ParticleExplosion:create () end
---*  Create a explosion particle system withe a fixed number of particles.<br>
---* param numberOfParticles A given number of particles.<br>
---* return An autoreleased ParticleExplosion object.<br>
---* js NA
---@param numberOfParticles int
---@return self
function ParticleExplosion:createWithTotalParticles (numberOfParticles) end
---* js ctor
---@return self
function ParticleExplosion:ParticleExplosion () end