mirror of https://github.com/axmolengine/axmol.git
33 lines
1.1 KiB
Lua
33 lines
1.1 KiB
Lua
|
|
--------------------------------
|
|
-- @module FadeOutDownTiles
|
|
-- @extend FadeOutUpTiles
|
|
-- @parent_module cc
|
|
|
|
--------------------------------
|
|
-- brief Create the action with the grid size and the duration.<br>
|
|
-- param duration Specify the duration of the FadeOutDownTiles 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 FadeOutDownTiles action; otherwise, return nil.
|
|
-- @function [parent=#FadeOutDownTiles] create
|
|
-- @param self
|
|
-- @param #float duration
|
|
-- @param #size_table gridSize
|
|
-- @return FadeOutDownTiles#FadeOutDownTiles ret (return value: cc.FadeOutDownTiles)
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#FadeOutDownTiles] clone
|
|
-- @param self
|
|
-- @return FadeOutDownTiles#FadeOutDownTiles ret (return value: cc.FadeOutDownTiles)
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#FadeOutDownTiles] testFunc
|
|
-- @param self
|
|
-- @param #size_table pos
|
|
-- @param #float time
|
|
-- @return float#float ret (return value: float)
|
|
|
|
return nil
|