2014-03-10 14:04:58 +08:00
|
|
|
|
|
|
|
--------------------------------
|
|
|
|
-- @module TintBy
|
2014-03-20 10:21:28 +08:00
|
|
|
-- @extend ActionInterval
|
2014-06-25 17:36:50 +08:00
|
|
|
-- @parent_module cc
|
2014-03-18 15:55:30 +08:00
|
|
|
|
2015-05-05 11:31:53 +08:00
|
|
|
--------------------------------
|
|
|
|
-- initializes the action with duration and color
|
|
|
|
-- @function [parent=#TintBy] initWithDuration
|
|
|
|
-- @param self
|
|
|
|
-- @param #float duration
|
|
|
|
-- @param #short deltaRed
|
|
|
|
-- @param #short deltaGreen
|
|
|
|
-- @param #short deltaBlue
|
|
|
|
-- @return bool#bool ret (return value: bool)
|
|
|
|
|
2014-03-10 14:04:58 +08:00
|
|
|
--------------------------------
|
2015-03-18 22:02:42 +08:00
|
|
|
-- 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.
|
2014-03-10 14:04:58 +08:00
|
|
|
-- @function [parent=#TintBy] create
|
|
|
|
-- @param self
|
2014-09-02 13:45:07 +08:00
|
|
|
-- @param #float duration
|
|
|
|
-- @param #short deltaRed
|
|
|
|
-- @param #short deltaGreen
|
|
|
|
-- @param #short deltaBlue
|
2014-03-10 14:04:58 +08:00
|
|
|
-- @return TintBy#TintBy ret (return value: cc.TintBy)
|
|
|
|
|
2014-03-18 15:55:30 +08:00
|
|
|
--------------------------------
|
2014-09-02 13:45:07 +08:00
|
|
|
--
|
2014-03-18 15:55:30 +08:00
|
|
|
-- @function [parent=#TintBy] startWithTarget
|
|
|
|
-- @param self
|
2014-09-02 13:45:07 +08:00
|
|
|
-- @param #cc.Node target
|
2015-01-21 17:33:26 +08:00
|
|
|
-- @return TintBy#TintBy self (return value: cc.TintBy)
|
2014-03-18 15:55:30 +08:00
|
|
|
|
|
|
|
--------------------------------
|
2014-09-02 13:45:07 +08:00
|
|
|
--
|
2014-03-18 15:55:30 +08:00
|
|
|
-- @function [parent=#TintBy] clone
|
|
|
|
-- @param self
|
|
|
|
-- @return TintBy#TintBy ret (return value: cc.TintBy)
|
|
|
|
|
|
|
|
--------------------------------
|
2014-09-02 13:45:07 +08:00
|
|
|
--
|
2014-03-18 15:55:30 +08:00
|
|
|
-- @function [parent=#TintBy] reverse
|
|
|
|
-- @param self
|
|
|
|
-- @return TintBy#TintBy ret (return value: cc.TintBy)
|
|
|
|
|
|
|
|
--------------------------------
|
2015-03-18 22:02:42 +08:00
|
|
|
-- param time In seconds.
|
2014-03-18 15:55:30 +08:00
|
|
|
-- @function [parent=#TintBy] update
|
|
|
|
-- @param self
|
2014-09-02 13:45:07 +08:00
|
|
|
-- @param #float time
|
2015-01-21 17:33:26 +08:00
|
|
|
-- @return TintBy#TintBy self (return value: cc.TintBy)
|
2014-03-18 15:55:30 +08:00
|
|
|
|
2015-05-05 11:31:53 +08:00
|
|
|
--------------------------------
|
|
|
|
--
|
|
|
|
-- @function [parent=#TintBy] TintBy
|
|
|
|
-- @param self
|
|
|
|
-- @return TintBy#TintBy self (return value: cc.TintBy)
|
|
|
|
|
2014-03-10 14:04:58 +08:00
|
|
|
return nil
|