mirror of https://github.com/axmolengine/axmol.git
32 lines
999 B
Lua
32 lines
999 B
Lua
|
|
--------------------------------
|
|
-- @module TransitionFadeDown
|
|
-- @extend TransitionFadeTR
|
|
-- @parent_module cc
|
|
|
|
--------------------------------
|
|
-- Creates a transition with duration and incoming scene.<br>
|
|
-- param t Duration time, in seconds.<br>
|
|
-- param scene A given scene.<br>
|
|
-- return A autoreleased TransitionFadeDown object.
|
|
-- @function [parent=#TransitionFadeDown] create
|
|
-- @param self
|
|
-- @param #float t
|
|
-- @param #cc.Scene scene
|
|
-- @return TransitionFadeDown#TransitionFadeDown ret (return value: cc.TransitionFadeDown)
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#TransitionFadeDown] actionWithSize
|
|
-- @param self
|
|
-- @param #size_table size
|
|
-- @return ActionInterval#ActionInterval ret (return value: cc.ActionInterval)
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#TransitionFadeDown] TransitionFadeDown
|
|
-- @param self
|
|
-- @return TransitionFadeDown#TransitionFadeDown self (return value: cc.TransitionFadeDown)
|
|
|
|
return nil
|