blob: 88e53310b7ce13781e04e161e024cd95a8483233 (
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.CatmullRomTo :cc.CardinalSplineTo
local CatmullRomTo={ }
cc.CatmullRomTo=CatmullRomTo
---* 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 CatmullRomTo:initWithDuration (dt,points) end
---*
---@return self
function CatmullRomTo:clone () end
---*
---@return self
function CatmullRomTo:reverse () end
|