mirror of https://github.com/axmolengine/axmol.git
49 lines
1.3 KiB
Lua
49 lines
1.3 KiB
Lua
|
|
--------------------------------
|
|
-- @module TintBy
|
|
-- @extend ActionInterval
|
|
-- @parent_module cc
|
|
|
|
--------------------------------
|
|
-- Creates an action with duration and color.<br>
|
|
-- param duration Duration time, in seconds.<br>
|
|
-- param deltaRed Delta red color.<br>
|
|
-- param deltaGreen Delta green color.<br>
|
|
-- param deltaBlue Delta blue color.<br>
|
|
-- return An autoreleased TintBy object.
|
|
-- @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
|