blob: c794a5e76577c1a7e454aa64eb023f49955ae72f (
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
|
---@meta
---@class cc.RemoveSelf :cc.ActionInstant
local RemoveSelf={ }
cc.RemoveSelf=RemoveSelf
---* init the action
---@param isNeedCleanUp boolean
---@return boolean
function RemoveSelf:init (isNeedCleanUp) end
---* Create the action.<br>
---* param isNeedCleanUp Is need to clean up, the default value is true.<br>
---* return An autoreleased RemoveSelf object.
---@return self
function RemoveSelf:create () end
---*
---@return self
function RemoveSelf:clone () end
---* param time In seconds.
---@param time float
---@return self
function RemoveSelf:update (time) end
---*
---@return self
function RemoveSelf:reverse () end
---*
---@return self
function RemoveSelf:RemoveSelf () end
|