blob: f434723659051f406c16c76747066b2ba2920d94 (
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.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
|