mirror of https://github.com/axmolengine/axmol.git
30 lines
812 B
Lua
30 lines
812 B
Lua
|
|
--------------------------------
|
|
-- @module CatmullRomBy
|
|
-- @extend CardinalSplineBy
|
|
-- @parent_module cc
|
|
|
|
--------------------------------
|
|
-- Initializes the action with a duration and an array of points.<br>
|
|
-- param dt In seconds.<br>
|
|
-- param points An PointArray.
|
|
-- @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
|