2014-03-27 14:55:35 +08:00
|
|
|
|
|
|
|
--------------------------------
|
|
|
|
-- @module ProtectedNode
|
|
|
|
-- @extend Node
|
2014-06-25 17:36:50 +08:00
|
|
|
-- @parent_module cc
|
2014-03-27 14:55:35 +08:00
|
|
|
|
|
|
|
--------------------------------
|
|
|
|
-- overload function: addProtectedChild(cc.Node, int)
|
|
|
|
--
|
|
|
|
-- overload function: addProtectedChild(cc.Node)
|
|
|
|
--
|
|
|
|
-- overload function: addProtectedChild(cc.Node, int, int)
|
|
|
|
--
|
|
|
|
-- @function [parent=#ProtectedNode] addProtectedChild
|
|
|
|
-- @param self
|
|
|
|
-- @param #cc.Node node
|
|
|
|
-- @param #int int
|
|
|
|
-- @param #int int
|
|
|
|
|
|
|
|
--------------------------------
|
|
|
|
-- @function [parent=#ProtectedNode] disableCascadeColor
|
|
|
|
-- @param self
|
|
|
|
|
|
|
|
--------------------------------
|
|
|
|
-- @function [parent=#ProtectedNode] removeProtectedChildByTag
|
|
|
|
-- @param self
|
|
|
|
-- @param #int int
|
|
|
|
-- @param #bool bool
|
|
|
|
|
|
|
|
--------------------------------
|
|
|
|
-- @function [parent=#ProtectedNode] reorderProtectedChild
|
|
|
|
-- @param self
|
|
|
|
-- @param #cc.Node node
|
|
|
|
-- @param #int int
|
|
|
|
|
|
|
|
--------------------------------
|
|
|
|
-- @function [parent=#ProtectedNode] removeAllProtectedChildrenWithCleanup
|
|
|
|
-- @param self
|
|
|
|
-- @param #bool bool
|
|
|
|
|
|
|
|
--------------------------------
|
|
|
|
-- @function [parent=#ProtectedNode] sortAllProtectedChildren
|
|
|
|
-- @param self
|
|
|
|
|
|
|
|
--------------------------------
|
|
|
|
-- @function [parent=#ProtectedNode] getProtectedChildByTag
|
|
|
|
-- @param self
|
|
|
|
-- @param #int int
|
|
|
|
-- @return Node#Node ret (return value: cc.Node)
|
|
|
|
|
|
|
|
--------------------------------
|
|
|
|
-- @function [parent=#ProtectedNode] removeProtectedChild
|
|
|
|
-- @param self
|
|
|
|
-- @param #cc.Node node
|
|
|
|
-- @param #bool bool
|
|
|
|
|
|
|
|
--------------------------------
|
|
|
|
-- @function [parent=#ProtectedNode] removeAllProtectedChildren
|
|
|
|
-- @param self
|
|
|
|
|
|
|
|
--------------------------------
|
|
|
|
-- @function [parent=#ProtectedNode] create
|
|
|
|
-- @param self
|
|
|
|
-- @return ProtectedNode#ProtectedNode ret (return value: cc.ProtectedNode)
|
|
|
|
|
2014-05-23 11:12:39 +08:00
|
|
|
--------------------------------
|
|
|
|
-- @function [parent=#ProtectedNode] visit
|
|
|
|
-- @param self
|
|
|
|
-- @param #cc.Renderer renderer
|
2014-05-27 14:31:18 +08:00
|
|
|
-- @param #mat4_table mat4
|
2014-06-05 11:01:43 +08:00
|
|
|
-- @param #unsigned int int
|
2014-05-23 11:12:39 +08:00
|
|
|
|
2014-03-27 14:55:35 +08:00
|
|
|
--------------------------------
|
|
|
|
-- @function [parent=#ProtectedNode] updateDisplayedOpacity
|
|
|
|
-- @param self
|
|
|
|
-- @param #unsigned char char
|
|
|
|
|
|
|
|
--------------------------------
|
|
|
|
-- @function [parent=#ProtectedNode] updateDisplayedColor
|
|
|
|
-- @param self
|
2014-05-08 11:19:36 +08:00
|
|
|
-- @param #color3b_table color3b
|
2014-03-27 14:55:35 +08:00
|
|
|
|
|
|
|
--------------------------------
|
|
|
|
-- @function [parent=#ProtectedNode] cleanup
|
|
|
|
-- @param self
|
|
|
|
|
|
|
|
return nil
|