diff options
Diffstat (limited to 'meta/3rd/Cocos4.0/cc.CatmullRomTo.lua')
-rw-r--r-- | meta/3rd/Cocos4.0/cc.CatmullRomTo.lua | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/meta/3rd/Cocos4.0/cc.CatmullRomTo.lua b/meta/3rd/Cocos4.0/cc.CatmullRomTo.lua new file mode 100644 index 00000000..cf5b2257 --- /dev/null +++ b/meta/3rd/Cocos4.0/cc.CatmullRomTo.lua @@ -0,0 +1,21 @@ + +---@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
\ No newline at end of file |