mirror of https://github.com/axmolengine/axmol.git
31 lines
1.0 KiB
Lua
31 lines
1.0 KiB
Lua
|
|
--------------------------------
|
|
-- @module TransitionSlideInT
|
|
-- @extend TransitionSlideInL
|
|
-- @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 TransitionSlideInT object.
|
|
-- @function [parent=#TransitionSlideInT] create
|
|
-- @param self
|
|
-- @param #float t
|
|
-- @param #cc.Scene scene
|
|
-- @return TransitionSlideInT#TransitionSlideInT ret (return value: cc.TransitionSlideInT)
|
|
|
|
--------------------------------
|
|
-- returns the action that will be performed by the incoming and outgoing scene
|
|
-- @function [parent=#TransitionSlideInT] action
|
|
-- @param self
|
|
-- @return ActionInterval#ActionInterval ret (return value: cc.ActionInterval)
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#TransitionSlideInT] TransitionSlideInT
|
|
-- @param self
|
|
-- @return TransitionSlideInT#TransitionSlideInT self (return value: cc.TransitionSlideInT)
|
|
|
|
return nil
|