blob: 75b79d37f790a57e517d0be23f1582fcaab14e8a (
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
|
---@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
|