mirror of https://github.com/axmolengine/axmol.git
60 lines
2.0 KiB
Lua
60 lines
2.0 KiB
Lua
|
|
--------------------------------
|
|
-- @module LayerMultiplex
|
|
-- @extend Layer
|
|
-- @parent_module cc
|
|
|
|
--------------------------------
|
|
-- initializes a MultiplexLayer with an array of layers<br>
|
|
-- since v2.1
|
|
-- @function [parent=#LayerMultiplex] initWithArray
|
|
-- @param self
|
|
-- @param #array_table arrayOfLayers
|
|
-- @return bool#bool ret (return value: bool)
|
|
|
|
--------------------------------
|
|
-- release the current layer and switches to another layer indexed by n.<br>
|
|
-- The current (old) layer will be removed from it's parent with 'cleanup=true'.<br>
|
|
-- param n The layer indexed by n will display.
|
|
-- @function [parent=#LayerMultiplex] switchToAndReleaseMe
|
|
-- @param self
|
|
-- @param #int n
|
|
-- @return LayerMultiplex#LayerMultiplex self (return value: cc.LayerMultiplex)
|
|
|
|
--------------------------------
|
|
-- Add a certain layer to LayerMultiplex.<br>
|
|
-- param layer A layer need to be added to the LayerMultiplex.
|
|
-- @function [parent=#LayerMultiplex] addLayer
|
|
-- @param self
|
|
-- @param #cc.Layer layer
|
|
-- @return LayerMultiplex#LayerMultiplex self (return value: cc.LayerMultiplex)
|
|
|
|
--------------------------------
|
|
-- Switches to a certain layer indexed by n.<br>
|
|
-- The current (old) layer will be removed from it's parent with 'cleanup=true'.<br>
|
|
-- param n The layer indexed by n will display.
|
|
-- @function [parent=#LayerMultiplex] switchTo
|
|
-- @param self
|
|
-- @param #int n
|
|
-- @return LayerMultiplex#LayerMultiplex self (return value: cc.LayerMultiplex)
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#LayerMultiplex] init
|
|
-- @param self
|
|
-- @return bool#bool ret (return value: bool)
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#LayerMultiplex] getDescription
|
|
-- @param self
|
|
-- @return string#string ret (return value: string)
|
|
|
|
--------------------------------
|
|
-- js ctor
|
|
-- @function [parent=#LayerMultiplex] LayerMultiplex
|
|
-- @param self
|
|
-- @return LayerMultiplex#LayerMultiplex self (return value: cc.LayerMultiplex)
|
|
|
|
return nil
|