mirror of https://github.com/axmolengine/axmol.git
42 lines
987 B
Lua
42 lines
987 B
Lua
|
|
--------------------------------
|
|
-- @module TintTo
|
|
-- @extend ActionInterval
|
|
-- @parent_module cc
|
|
|
|
--------------------------------
|
|
-- creates an action with duration and color
|
|
-- @function [parent=#TintTo] create
|
|
-- @param self
|
|
-- @param #float duration
|
|
-- @param #unsigned char red
|
|
-- @param #unsigned char green
|
|
-- @param #unsigned char blue
|
|
-- @return TintTo#TintTo ret (return value: cc.TintTo)
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#TintTo] startWithTarget
|
|
-- @param self
|
|
-- @param #cc.Node target
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#TintTo] clone
|
|
-- @param self
|
|
-- @return TintTo#TintTo ret (return value: cc.TintTo)
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#TintTo] reverse
|
|
-- @param self
|
|
-- @return TintTo#TintTo ret (return value: cc.TintTo)
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#TintTo] update
|
|
-- @param self
|
|
-- @param #float time
|
|
|
|
return nil
|