mirror of https://github.com/axmolengine/axmol.git
42 lines
978 B
Lua
42 lines
978 B
Lua
|
|
--------------------------------
|
|
-- @module TintBy
|
|
-- @extend ActionInterval
|
|
-- @parent_module cc
|
|
|
|
--------------------------------
|
|
-- creates an action with duration and color
|
|
-- @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
|
|
|
|
--------------------------------
|
|
--
|
|
-- @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)
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#TintBy] update
|
|
-- @param self
|
|
-- @param #float time
|
|
|
|
return nil
|