mirror of https://github.com/axmolengine/axmol.git
53 lines
1.7 KiB
Lua
53 lines
1.7 KiB
Lua
|
|
--------------------------------
|
|
-- @module ActionScaleFrame
|
|
-- @extend ActionFrame
|
|
-- @parent_module ccs
|
|
|
|
--------------------------------
|
|
-- Changes the scale action scaleY.<br>
|
|
-- param rotation the scale action scaleY.
|
|
-- @function [parent=#ActionScaleFrame] setScaleY
|
|
-- @param self
|
|
-- @param #float scaleY
|
|
-- @return ActionScaleFrame#ActionScaleFrame self (return value: ccs.ActionScaleFrame)
|
|
|
|
--------------------------------
|
|
-- Changes the scale action scaleX.<br>
|
|
-- param the scale action scaleX.
|
|
-- @function [parent=#ActionScaleFrame] setScaleX
|
|
-- @param self
|
|
-- @param #float scaleX
|
|
-- @return ActionScaleFrame#ActionScaleFrame self (return value: ccs.ActionScaleFrame)
|
|
|
|
--------------------------------
|
|
-- Gets the scale action scaleY.<br>
|
|
-- return the the scale action scaleY.
|
|
-- @function [parent=#ActionScaleFrame] getScaleY
|
|
-- @param self
|
|
-- @return float#float ret (return value: float)
|
|
|
|
--------------------------------
|
|
-- Gets the scale action scaleX.<br>
|
|
-- return the scale action scaleX.
|
|
-- @function [parent=#ActionScaleFrame] getScaleX
|
|
-- @param self
|
|
-- @return float#float ret (return value: float)
|
|
|
|
--------------------------------
|
|
-- Gets the ActionInterval of ActionFrame.<br>
|
|
-- parame duration the duration time of ActionFrame<br>
|
|
-- return ActionInterval
|
|
-- @function [parent=#ActionScaleFrame] getAction
|
|
-- @param self
|
|
-- @param #float duration
|
|
-- @return ActionInterval#ActionInterval ret (return value: cc.ActionInterval)
|
|
|
|
--------------------------------
|
|
-- Default constructor
|
|
-- @function [parent=#ActionScaleFrame] ActionScaleFrame
|
|
-- @param self
|
|
-- @return ActionScaleFrame#ActionScaleFrame self (return value: ccs.ActionScaleFrame)
|
|
|
|
return nil
|