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