2014-03-10 14:04:58 +08:00
|
|
|
|
|
|
|
--------------------------------
|
|
|
|
-- @module TransitionScene
|
2014-03-20 10:21:28 +08:00
|
|
|
-- @extend Scene
|
2014-06-25 17:36:50 +08:00
|
|
|
-- @parent_module cc
|
2014-03-18 15:55:30 +08:00
|
|
|
|
2014-03-10 14:04:58 +08:00
|
|
|
--------------------------------
|
2014-09-02 13:45:07 +08:00
|
|
|
-- called after the transition finishes
|
2014-03-10 14:04:58 +08:00
|
|
|
-- @function [parent=#TransitionScene] finish
|
|
|
|
-- @param self
|
|
|
|
|
|
|
|
--------------------------------
|
2014-09-02 13:45:07 +08:00
|
|
|
-- used by some transitions to hide the outer scene
|
2014-03-10 14:04:58 +08:00
|
|
|
-- @function [parent=#TransitionScene] hideOutShowIn
|
|
|
|
-- @param self
|
|
|
|
|
|
|
|
--------------------------------
|
2014-09-02 13:45:07 +08:00
|
|
|
-- creates a base transition with duration and incoming scene
|
2014-03-10 14:04:58 +08:00
|
|
|
-- @function [parent=#TransitionScene] create
|
|
|
|
-- @param self
|
2014-09-02 13:45:07 +08:00
|
|
|
-- @param #float t
|
2014-03-10 14:04:58 +08:00
|
|
|
-- @param #cc.Scene scene
|
|
|
|
-- @return TransitionScene#TransitionScene ret (return value: cc.TransitionScene)
|
|
|
|
|
2014-03-18 15:55:30 +08:00
|
|
|
--------------------------------
|
2014-09-02 13:45:07 +08:00
|
|
|
--
|
2014-03-18 15:55:30 +08:00
|
|
|
-- @function [parent=#TransitionScene] draw
|
|
|
|
-- @param self
|
|
|
|
-- @param #cc.Renderer renderer
|
2014-09-02 13:45:07 +08:00
|
|
|
-- @param #mat4_table transform
|
|
|
|
-- @param #unsigned int flags
|
2014-03-18 15:55:30 +08:00
|
|
|
|
|
|
|
--------------------------------
|
2014-09-02 13:45:07 +08:00
|
|
|
--
|
2014-03-18 15:55:30 +08:00
|
|
|
-- @function [parent=#TransitionScene] cleanup
|
|
|
|
-- @param self
|
|
|
|
|
2014-03-10 14:04:58 +08:00
|
|
|
return nil
|