blob: 1443e92163dcc080caa6256b0def3f44d1f3bc54 (
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
---@meta
---@class ccs.ActionFrame :cc.Ref
local ActionFrame={ }
ccs.ActionFrame=ActionFrame
---@overload fun(float:float,ccs.ActionFrame:ccs.ActionFrame):self
---@overload fun(float:float):self
---@param duration float
---@param srcFrame ccs.ActionFrame
---@return cc.ActionInterval
function ActionFrame:getAction (duration,srcFrame) end
---* Gets the type of action frame<br>
---* return the type of action frame
---@return int
function ActionFrame:getFrameType () end
---* Changes the time of action frame<br>
---* param fTime the time of action frame
---@param fTime float
---@return self
function ActionFrame:setFrameTime (fTime) end
---* Changes the easing type.<br>
---* param easingType the easing type.
---@param easingType int
---@return self
function ActionFrame:setEasingType (easingType) end
---* Gets the time of action frame<br>
---* return fTime the time of action frame
---@return float
function ActionFrame:getFrameTime () end
---* Gets the index of action frame<br>
---* return the index of action frame
---@return int
function ActionFrame:getFrameIndex () end
---* Changes the type of action frame<br>
---* param frameType the type of action frame
---@param frameType int
---@return self
function ActionFrame:setFrameType (frameType) end
---* Changes the index of action frame<br>
---* param index the index of action frame
---@param index int
---@return self
function ActionFrame:setFrameIndex (index) end
---* Set the ActionInterval easing parameter.<br>
---* param parameter the parameter for frame ease
---@param parameter array_table
---@return self
function ActionFrame:setEasingParameter (parameter) end
---* Gets the easing type.<br>
---* return the easing type.
---@return int
function ActionFrame:getEasingType () end
---* Default constructor
---@return self
function ActionFrame:ActionFrame () end
|