blob: 2bd44098aa881926af60140b8bb9991e3dc8f122 (
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
32
|
---@class cc.FadeOutUpTiles :cc.FadeOutTRTiles
local FadeOutUpTiles={ }
cc.FadeOutUpTiles=FadeOutUpTiles
---* brief Create the action with the grid size and the duration.<br>
---* param duration Specify the duration of the FadeOutUpTiles action. It's a value in seconds.<br>
---* param gridSize Specify the size of the grid.<br>
---* return If the creation success, return a pointer of FadeOutUpTiles action; otherwise, return nil.
---@param duration float
---@param gridSize size_table
---@return self
function FadeOutUpTiles:create (duration,gridSize) end
---*
---@return self
function FadeOutUpTiles:clone () end
---*
---@param pos vec2_table
---@param distance float
---@return self
function FadeOutUpTiles:transformTile (pos,distance) end
---*
---@param pos size_table
---@param time float
---@return float
function FadeOutUpTiles:testFunc (pos,time) end
---*
---@return self
function FadeOutUpTiles:FadeOutUpTiles () end
|