mirror of https://github.com/axmolengine/axmol.git
40 lines
1.0 KiB
Lua
40 lines
1.0 KiB
Lua
|
|
--------------------------------
|
|
-- @module SkewBy
|
|
-- @extend SkewTo
|
|
-- @parent_module cc
|
|
|
|
--------------------------------
|
|
-- Creates the action.<br>
|
|
-- param t Duration time, in seconds.<br>
|
|
-- param deltaSkewX Skew x delta angle.<br>
|
|
-- param deltaSkewY Skew y delta angle.<br>
|
|
-- return An autoreleased SkewBy object.
|
|
-- @function [parent=#SkewBy] create
|
|
-- @param self
|
|
-- @param #float t
|
|
-- @param #float deltaSkewX
|
|
-- @param #float deltaSkewY
|
|
-- @return SkewBy#SkewBy ret (return value: cc.SkewBy)
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#SkewBy] startWithTarget
|
|
-- @param self
|
|
-- @param #cc.Node target
|
|
-- @return SkewBy#SkewBy self (return value: cc.SkewBy)
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#SkewBy] clone
|
|
-- @param self
|
|
-- @return SkewBy#SkewBy ret (return value: cc.SkewBy)
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#SkewBy] reverse
|
|
-- @param self
|
|
-- @return SkewBy#SkewBy ret (return value: cc.SkewBy)
|
|
|
|
return nil
|