summaryrefslogtreecommitdiff
path: root/meta/3rd/Cocos4.0/library/ccs.ActionScaleFrame.lua
blob: 638e1a7792640a2a6e8084a5c0f9f8537bc153df (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
33
34
35
36
---@meta

---@class ccs.ActionScaleFrame :ccs.ActionFrame
local ActionScaleFrame={ }
ccs.ActionScaleFrame=ActionScaleFrame




---* Changes the scale action scaleY.<br>
---* param rotation the scale action scaleY.
---@param scaleY float
---@return self
function ActionScaleFrame:setScaleY (scaleY) end
---* Changes the scale action scaleX.<br>
---* param the scale action scaleX.
---@param scaleX float
---@return self
function ActionScaleFrame:setScaleX (scaleX) end
---* Gets the scale action scaleY.<br>
---* return the scale action scaleY.
---@return float
function ActionScaleFrame:getScaleY () end
---* Gets the scale action scaleX.<br>
---* return the scale action scaleX.
---@return float
function ActionScaleFrame:getScaleX () end
---* Gets the ActionInterval of ActionFrame.<br>
---* param duration   the duration time of ActionFrame<br>
---* return ActionInterval
---@param duration float
---@return cc.ActionInterval
function ActionScaleFrame:getAction (duration) end
---* Default constructor
---@return self
function ActionScaleFrame:ActionScaleFrame () end