blob: 446323cf8bd783c5f0db13ad2f394adeed34e8d8 (
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
|
---@meta
---@class cc.StopGrid :cc.ActionInstant
local StopGrid={ }
cc.StopGrid=StopGrid
---* brief Create a StopGrid Action.<br>
---* return Return a pointer of StopGrid. When the creation failed, return nil.
---@return self
function StopGrid:create () end
---*
---@param target cc.Node
---@return self
function StopGrid:startWithTarget (target) end
---*
---@return self
function StopGrid:clone () end
---*
---@return self
function StopGrid:reverse () end
---*
---@return self
function StopGrid:StopGrid () end
|