diff options
Diffstat (limited to 'meta/3rd/Cocos4.0/library/cc/PageTurn3D.lua')
-rw-r--r-- | meta/3rd/Cocos4.0/library/cc/PageTurn3D.lua | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/meta/3rd/Cocos4.0/library/cc/PageTurn3D.lua b/meta/3rd/Cocos4.0/library/cc/PageTurn3D.lua new file mode 100644 index 00000000..fdf16d5f --- /dev/null +++ b/meta/3rd/Cocos4.0/library/cc/PageTurn3D.lua @@ -0,0 +1,27 @@ +---@meta + +---@class cc.PageTurn3D :cc.Grid3DAction +local PageTurn3D={ } +cc.PageTurn3D=PageTurn3D + + + + +---* brief Create an action with duration, grid size.<br> +---* param duration Specify the duration of the PageTurn3D action. It's a value in seconds.<br> +---* param gridSize Specify the size of the grid.<br> +---* return If the creation success, return a pointer of PageTurn3D action; otherwise, return nil. +---@param duration float +---@param gridSize size_table +---@return self +function PageTurn3D:create (duration,gridSize) end +---* +---@return self +function PageTurn3D:clone () end +---* js NA +---@return cc.GridBase +function PageTurn3D:getGrid () end +---* +---@param time float +---@return self +function PageTurn3D:update (time) end
\ No newline at end of file |