mirror of https://github.com/axmolengine/axmol.git
28 lines
749 B
Lua
28 lines
749 B
Lua
|
|
--------------------------------
|
|
-- @module CatmullRomBy
|
|
-- @extend CardinalSplineBy
|
|
-- @parent_module cc
|
|
|
|
--------------------------------
|
|
-- initializes the action with a duration and an array of points
|
|
-- @function [parent=#CatmullRomBy] initWithDuration
|
|
-- @param self
|
|
-- @param #float dt
|
|
-- @param #point_table points
|
|
-- @return bool#bool ret (return value: bool)
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#CatmullRomBy] clone
|
|
-- @param self
|
|
-- @return CatmullRomBy#CatmullRomBy ret (return value: cc.CatmullRomBy)
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#CatmullRomBy] reverse
|
|
-- @param self
|
|
-- @return CatmullRomBy#CatmullRomBy ret (return value: cc.CatmullRomBy)
|
|
|
|
return nil
|