summaryrefslogtreecommitdiff
path: root/meta/3rd/Cocos4.0/library/cc/Waves3D.lua
blob: 918acfe4d2b4c5b49637fdc1513722e8938d74df (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
---@meta

---@class cc.Waves3D :cc.Grid3DAction
local Waves3D={ }
cc.Waves3D=Waves3D




---* brief Set the amplitude rate of the effect.<br>
---* param amplitudeRate The value of amplitude rate will be set.
---@param amplitudeRate float
---@return self
function Waves3D:setAmplitudeRate (amplitudeRate) end
---* brief Initializes an action with duration, grid size, waves and amplitude.<br>
---* param duration Specify the duration of the Waves3D action. It's a value in seconds.<br>
---* param gridSize Specify the size of the grid.<br>
---* param waves Specify the waves count of the Waves3D action.<br>
---* param amplitude Specify the amplitude of the Waves3D action.<br>
---* return If the initialization success, return true; otherwise, return false.
---@param duration float
---@param gridSize size_table
---@param waves unsigned_int
---@param amplitude float
---@return boolean
function Waves3D:initWithDuration (duration,gridSize,waves,amplitude) end
---* brief Get the amplitude of the effect.<br>
---* return Return the amplitude of the effect.
---@return float
function Waves3D:getAmplitude () end
---* brief Get the amplitude rate of the effect.<br>
---* return Return the amplitude rate of the effect.
---@return float
function Waves3D:getAmplitudeRate () end
---* brief Set the amplitude to the effect.<br>
---* param amplitude The value of amplitude will be set.
---@param amplitude float
---@return self
function Waves3D:setAmplitude (amplitude) end
---* brief Create an action with duration, grid size, waves and amplitude.<br>
---* param duration Specify the duration of the Waves3D action. It's a value in seconds.<br>
---* param gridSize Specify the size of the grid.<br>
---* param waves Specify the waves count of the Waves3D action.<br>
---* param amplitude Specify the amplitude of the Waves3D action.<br>
---* return If the creation success, return a pointer of Waves3D action; otherwise, return nil.
---@param duration float
---@param gridSize size_table
---@param waves unsigned_int
---@param amplitude float
---@return self
function Waves3D:create (duration,gridSize,waves,amplitude) end
---* 
---@return self
function Waves3D:clone () end
---* 
---@param time float
---@return self
function Waves3D:update (time) end
---* 
---@return self
function Waves3D:Waves3D () end