mirror of https://github.com/axmolengine/axmol.git
45 lines
1.1 KiB
Lua
45 lines
1.1 KiB
Lua
|
|
--------------------------------
|
|
-- @module TintBy
|
|
-- @extend ActionInterval
|
|
-- @parent_module cc
|
|
|
|
--------------------------------
|
|
-- creates an action with duration and color<br>
|
|
-- param duration in seconds
|
|
-- @function [parent=#TintBy] create
|
|
-- @param self
|
|
-- @param #float duration
|
|
-- @param #short deltaRed
|
|
-- @param #short deltaGreen
|
|
-- @param #short deltaBlue
|
|
-- @return TintBy#TintBy ret (return value: cc.TintBy)
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#TintBy] startWithTarget
|
|
-- @param self
|
|
-- @param #cc.Node target
|
|
-- @return TintBy#TintBy self (return value: cc.TintBy)
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#TintBy] clone
|
|
-- @param self
|
|
-- @return TintBy#TintBy ret (return value: cc.TintBy)
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#TintBy] reverse
|
|
-- @param self
|
|
-- @return TintBy#TintBy ret (return value: cc.TintBy)
|
|
|
|
--------------------------------
|
|
-- param time in seconds
|
|
-- @function [parent=#TintBy] update
|
|
-- @param self
|
|
-- @param #float time
|
|
-- @return TintBy#TintBy self (return value: cc.TintBy)
|
|
|
|
return nil
|