blob: d22972cd220d98be569b39ad482ffc1003b8b421 (
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.Hide :cc.ActionInstant
local Hide={ }
cc.Hide=Hide
---* Allocates and initializes the action.<br>
---* return An autoreleased Hide object.
---@return self
function Hide:create () end
---*
---@return self
function Hide:clone () end
---* param time In seconds.
---@param time float
---@return self
function Hide:update (time) end
---*
---@return cc.ActionInstant
function Hide:reverse () end
---*
---@return self
function Hide:Hide () end
|