summaryrefslogtreecommitdiff
path: root/meta/3rd/Cocos4.0/cc.ReuseGrid.lua
blob: 926b35632bab128f32b4552df894812f48f5fa65 (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

---@class cc.ReuseGrid :cc.ActionInstant
local ReuseGrid={ }
cc.ReuseGrid=ReuseGrid




---* brief Initializes an action with the number of times that the current grid will be reused.<br>
---* param times Specify times the grid will be reused.<br>
---* return If the initialization success, return true; otherwise, return false.
---@param times int
---@return boolean
function ReuseGrid:initWithTimes (times) end
---* brief Create an action with the number of times that the current grid will be reused.<br>
---* param times Specify times the grid will be reused.<br>
---* return Return a pointer of ReuseGrid. When the creation failed, return nil.
---@param times int
---@return self
function ReuseGrid:create (times) end
---* 
---@param target cc.Node
---@return self
function ReuseGrid:startWithTarget (target) end
---* 
---@return self
function ReuseGrid:clone () end
---* 
---@return self
function ReuseGrid:reverse () end
---* 
---@return self
function ReuseGrid:ReuseGrid () end