diff options
Diffstat (limited to 'meta/3rd/Cocos4.0/cc.SplitRows.lua')
-rw-r--r-- | meta/3rd/Cocos4.0/cc.SplitRows.lua | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/meta/3rd/Cocos4.0/cc.SplitRows.lua b/meta/3rd/Cocos4.0/cc.SplitRows.lua new file mode 100644 index 00000000..948c6d45 --- /dev/null +++ b/meta/3rd/Cocos4.0/cc.SplitRows.lua @@ -0,0 +1,38 @@ + +---@class cc.SplitRows :cc.TiledGrid3DAction +local SplitRows={ } +cc.SplitRows=SplitRows + + + + +---* brief Initializes the action with the number rows and the duration.<br> +---* param duration Specify the duration of the SplitRows action. It's a value in seconds.<br> +---* param rows Specify the rows count should be split.<br> +---* return If the creation success, return true; otherwise, return false. +---@param duration float +---@param rows unsigned_int +---@return boolean +function SplitRows:initWithDuration (duration,rows) end +---* brief Create the action with the number of rows and the duration.<br> +---* param duration Specify the duration of the SplitRows action. It's a value in seconds.<br> +---* param rows Specify the rows count should be split.<br> +---* return If the creation success, return a pointer of SplitRows action; otherwise, return nil. +---@param duration float +---@param rows unsigned_int +---@return self +function SplitRows:create (duration,rows) end +---* +---@param target cc.Node +---@return self +function SplitRows:startWithTarget (target) end +---* +---@return self +function SplitRows:clone () end +---* +---@param time float +---@return self +function SplitRows:update (time) end +---* +---@return self +function SplitRows:SplitRows () end
\ No newline at end of file |