blob: 89314338ac4a02220de4c7095f9623610a6e2a15 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
---@meta
---@class cc.CatmullRomBy :cc.CardinalSplineBy
local CatmullRomBy={ }
cc.CatmullRomBy=CatmullRomBy
---* Initializes the action with a duration and an array of points.<br>
---* param dt In seconds.<br>
---* param points An PointArray.
---@param dt float
---@param points point_table
---@return boolean
function CatmullRomBy:initWithDuration (dt,points) end
---*
---@return self
function CatmullRomBy:clone () end
---*
---@return self
function CatmullRomBy:reverse () end
|