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