mirror of https://github.com/axmolengine/axmol.git
41 lines
1021 B
Lua
41 lines
1021 B
Lua
|
|
--------------------------------
|
|
-- @module BezierTo
|
|
-- @extend BezierBy
|
|
-- @parent_module cc
|
|
|
|
--------------------------------
|
|
-- param t In seconds.
|
|
-- @function [parent=#BezierTo] initWithDuration
|
|
-- @param self
|
|
-- @param #float t
|
|
-- @param #cc._ccBezierConfig c
|
|
-- @return bool#bool ret (return value: bool)
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#BezierTo] startWithTarget
|
|
-- @param self
|
|
-- @param #cc.Node target
|
|
-- @return BezierTo#BezierTo self (return value: cc.BezierTo)
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#BezierTo] clone
|
|
-- @param self
|
|
-- @return BezierTo#BezierTo ret (return value: cc.BezierTo)
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#BezierTo] reverse
|
|
-- @param self
|
|
-- @return BezierTo#BezierTo ret (return value: cc.BezierTo)
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#BezierTo] BezierTo
|
|
-- @param self
|
|
-- @return BezierTo#BezierTo self (return value: cc.BezierTo)
|
|
|
|
return nil
|