mirror of https://github.com/axmolengine/axmol.git
32 lines
975 B
Lua
32 lines
975 B
Lua
|
|
--------------------------------
|
|
-- @module TransitionFadeBL
|
|
-- @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 TransitionFadeBL object.
|
|
-- @function [parent=#TransitionFadeBL] create
|
|
-- @param self
|
|
-- @param #float t
|
|
-- @param #cc.Scene scene
|
|
-- @return TransitionFadeBL#TransitionFadeBL ret (return value: cc.TransitionFadeBL)
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#TransitionFadeBL] actionWithSize
|
|
-- @param self
|
|
-- @param #size_table size
|
|
-- @return ActionInterval#ActionInterval ret (return value: cc.ActionInterval)
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#TransitionFadeBL] TransitionFadeBL
|
|
-- @param self
|
|
-- @return TransitionFadeBL#TransitionFadeBL self (return value: cc.TransitionFadeBL)
|
|
|
|
return nil
|