blob: aeabe39ef038b09b8ca5dd49e8aae20a05ece50f (
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
|
---@class cc.FlipY :cc.ActionInstant
local FlipY={ }
cc.FlipY=FlipY
---* init the action
---@param y boolean
---@return boolean
function FlipY:initWithFlipY (y) end
---* Create the action.<br>
---* param y Flips the sprite vertically if true.<br>
---* return An autoreleased FlipY object.
---@param y boolean
---@return self
function FlipY:create (y) end
---*
---@return self
function FlipY:clone () end
---* param time In seconds.
---@param time float
---@return self
function FlipY:update (time) end
---*
---@return self
function FlipY:reverse () end
---*
---@return self
function FlipY:FlipY () end
|