blob: 6e292087dc56f4f4e47c92da1d78be60e46d5f35 (
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
|
---@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
|