[AUTO]: updating luabinding automatically

This commit is contained in:
CocosRobot 2014-06-26 03:10:44 +00:00
parent ff04528df1
commit 57513d4c2e
32 changed files with 8951 additions and 346 deletions

View File

@ -0,0 +1,27 @@
--------------------------------
-- @module ActionFadeFrame
-- @extend ActionFrame
-- @parent_module ccs
--------------------------------
-- @function [parent=#ActionFadeFrame] getOpacity
-- @param self
-- @return int#int ret (return value: int)
--------------------------------
-- @function [parent=#ActionFadeFrame] getAction
-- @param self
-- @param #float float
-- @return ActionInterval#ActionInterval ret (return value: cc.ActionInterval)
--------------------------------
-- @function [parent=#ActionFadeFrame] setOpacity
-- @param self
-- @param #int int
--------------------------------
-- @function [parent=#ActionFadeFrame] ActionFadeFrame
-- @param self
return nil

View File

@ -0,0 +1,67 @@
--------------------------------
-- @module ActionFrame
-- @extend Ref
-- @parent_module ccs
--------------------------------
-- overload function: getAction(float, ccs.ActionFrame)
--
-- overload function: getAction(float)
--
-- @function [parent=#ActionFrame] getAction
-- @param self
-- @param #float float
-- @param #ccs.ActionFrame actionframe
-- @return ActionInterval#ActionInterval ret (retunr value: cc.ActionInterval)
--------------------------------
-- @function [parent=#ActionFrame] getFrameType
-- @param self
-- @return int#int ret (return value: int)
--------------------------------
-- @function [parent=#ActionFrame] setFrameTime
-- @param self
-- @param #float float
--------------------------------
-- @function [parent=#ActionFrame] setEasingType
-- @param self
-- @param #int int
--------------------------------
-- @function [parent=#ActionFrame] getFrameTime
-- @param self
-- @return float#float ret (return value: float)
--------------------------------
-- @function [parent=#ActionFrame] getFrameIndex
-- @param self
-- @return int#int ret (return value: int)
--------------------------------
-- @function [parent=#ActionFrame] setFrameType
-- @param self
-- @param #int int
--------------------------------
-- @function [parent=#ActionFrame] setFrameIndex
-- @param self
-- @param #int int
--------------------------------
-- @function [parent=#ActionFrame] setEasingParameter
-- @param self
-- @param #array_table array
--------------------------------
-- @function [parent=#ActionFrame] getEasingType
-- @param self
-- @return int#int ret (return value: int)
--------------------------------
-- @function [parent=#ActionFrame] ActionFrame
-- @param self
return nil

View File

@ -0,0 +1,27 @@
--------------------------------
-- @module ActionMoveFrame
-- @extend ActionFrame
-- @parent_module ccs
--------------------------------
-- @function [parent=#ActionMoveFrame] setPosition
-- @param self
-- @param #vec2_table vec2
--------------------------------
-- @function [parent=#ActionMoveFrame] getAction
-- @param self
-- @param #float float
-- @return ActionInterval#ActionInterval ret (return value: cc.ActionInterval)
--------------------------------
-- @function [parent=#ActionMoveFrame] getPosition
-- @param self
-- @return vec2_table#vec2_table ret (return value: vec2_table)
--------------------------------
-- @function [parent=#ActionMoveFrame] ActionMoveFrame
-- @param self
return nil

View File

@ -0,0 +1,32 @@
--------------------------------
-- @module ActionRotationFrame
-- @extend ActionFrame
-- @parent_module ccs
--------------------------------
-- @function [parent=#ActionRotationFrame] setRotation
-- @param self
-- @param #float float
--------------------------------
-- overload function: getAction(float, ccs.ActionFrame)
--
-- overload function: getAction(float)
--
-- @function [parent=#ActionRotationFrame] getAction
-- @param self
-- @param #float float
-- @param #ccs.ActionFrame actionframe
-- @return ActionInterval#ActionInterval ret (retunr value: cc.ActionInterval)
--------------------------------
-- @function [parent=#ActionRotationFrame] getRotation
-- @param self
-- @return float#float ret (return value: float)
--------------------------------
-- @function [parent=#ActionRotationFrame] ActionRotationFrame
-- @param self
return nil

View File

@ -0,0 +1,37 @@
--------------------------------
-- @module ActionScaleFrame
-- @extend ActionFrame
-- @parent_module ccs
--------------------------------
-- @function [parent=#ActionScaleFrame] setScaleY
-- @param self
-- @param #float float
--------------------------------
-- @function [parent=#ActionScaleFrame] setScaleX
-- @param self
-- @param #float float
--------------------------------
-- @function [parent=#ActionScaleFrame] getScaleY
-- @param self
-- @return float#float ret (return value: float)
--------------------------------
-- @function [parent=#ActionScaleFrame] getScaleX
-- @param self
-- @return float#float ret (return value: float)
--------------------------------
-- @function [parent=#ActionScaleFrame] getAction
-- @param self
-- @param #float float
-- @return ActionInterval#ActionInterval ret (return value: cc.ActionInterval)
--------------------------------
-- @function [parent=#ActionScaleFrame] ActionScaleFrame
-- @param self
return nil

View File

@ -0,0 +1,136 @@
--------------------------------
-- @module ActionTimeline
-- @extend Action
-- @parent_module ccs
--------------------------------
-- @function [parent=#ActionTimeline] getTimelines
-- @param self
-- @return array_table#array_table ret (return value: array_table)
--------------------------------
-- @function [parent=#ActionTimeline] getCurrentFrame
-- @param self
-- @return int#int ret (return value: int)
--------------------------------
-- @function [parent=#ActionTimeline] getStartFrame
-- @param self
-- @return int#int ret (return value: int)
--------------------------------
-- @function [parent=#ActionTimeline] pause
-- @param self
--------------------------------
-- @function [parent=#ActionTimeline] setFrameEventCallFunc
-- @param self
-- @param #function func
--------------------------------
-- @function [parent=#ActionTimeline] resume
-- @param self
--------------------------------
-- @function [parent=#ActionTimeline] getDuration
-- @param self
-- @return int#int ret (return value: int)
--------------------------------
-- @function [parent=#ActionTimeline] addTimeline
-- @param self
-- @param #ccs.Timeline timeline
--------------------------------
-- @function [parent=#ActionTimeline] getEndFrame
-- @param self
-- @return int#int ret (return value: int)
--------------------------------
-- @function [parent=#ActionTimeline] setTimeSpeed
-- @param self
-- @param #float float
--------------------------------
-- @function [parent=#ActionTimeline] init
-- @param self
-- @return bool#bool ret (return value: bool)
--------------------------------
-- @function [parent=#ActionTimeline] setDuration
-- @param self
-- @param #int int
--------------------------------
-- @function [parent=#ActionTimeline] getTimeSpeed
-- @param self
-- @return float#float ret (return value: float)
--------------------------------
-- @function [parent=#ActionTimeline] gotoFrameAndPause
-- @param self
-- @param #int int
--------------------------------
-- @function [parent=#ActionTimeline] isPlaying
-- @param self
-- @return bool#bool ret (return value: bool)
--------------------------------
-- overload function: gotoFrameAndPlay(int, bool)
--
-- overload function: gotoFrameAndPlay(int)
--
-- overload function: gotoFrameAndPlay(int, int, bool)
--
-- @function [parent=#ActionTimeline] gotoFrameAndPlay
-- @param self
-- @param #int int
-- @param #int int
-- @param #bool bool
--------------------------------
-- @function [parent=#ActionTimeline] removeTimeline
-- @param self
-- @param #ccs.Timeline timeline
--------------------------------
-- @function [parent=#ActionTimeline] clearFrameEventCallFunc
-- @param self
--------------------------------
-- @function [parent=#ActionTimeline] create
-- @param self
-- @return ActionTimeline#ActionTimeline ret (return value: ccs.ActionTimeline)
--------------------------------
-- @function [parent=#ActionTimeline] step
-- @param self
-- @param #float float
--------------------------------
-- @function [parent=#ActionTimeline] startWithTarget
-- @param self
-- @param #cc.Node node
--------------------------------
-- @function [parent=#ActionTimeline] clone
-- @param self
-- @return ActionTimeline#ActionTimeline ret (return value: ccs.ActionTimeline)
--------------------------------
-- @function [parent=#ActionTimeline] reverse
-- @param self
-- @return ActionTimeline#ActionTimeline ret (return value: ccs.ActionTimeline)
--------------------------------
-- @function [parent=#ActionTimeline] isDone
-- @param self
-- @return bool#bool ret (return value: bool)
--------------------------------
-- @function [parent=#ActionTimeline] ActionTimeline
-- @param self
return nil

View File

@ -0,0 +1,41 @@
--------------------------------
-- @module ActionTimelineCache
--------------------------------
-- @function [parent=#ActionTimelineCache] createAction
-- @param self
-- @param #string str
-- @return ActionTimeline#ActionTimeline ret (return value: ccs.ActionTimeline)
--------------------------------
-- @function [parent=#ActionTimelineCache] purge
-- @param self
--------------------------------
-- @function [parent=#ActionTimelineCache] init
-- @param self
--------------------------------
-- @function [parent=#ActionTimelineCache] loadAnimationActionWithContent
-- @param self
-- @param #string str
-- @param #string str
-- @return ActionTimeline#ActionTimeline ret (return value: ccs.ActionTimeline)
--------------------------------
-- @function [parent=#ActionTimelineCache] loadAnimationActionWithFile
-- @param self
-- @param #string str
-- @return ActionTimeline#ActionTimeline ret (return value: ccs.ActionTimeline)
--------------------------------
-- @function [parent=#ActionTimelineCache] removeAction
-- @param self
-- @param #string str
--------------------------------
-- @function [parent=#ActionTimelineCache] destroyInstance
-- @param self
return nil

View File

@ -18,6 +18,6 @@
-- @function [parent=#ActionTimelineData] create
-- @param self
-- @param #int int
-- @return timeline::ActionTimelineData#timeline::ActionTimelineData ret (return value: ccs.timeline::ActionTimelineData)
-- @return ActionTimelineData#ActionTimelineData ret (return value: ccs.ActionTimelineData)
return nil

View File

@ -0,0 +1,27 @@
--------------------------------
-- @module ActionTintFrame
-- @extend ActionFrame
-- @parent_module ccs
--------------------------------
-- @function [parent=#ActionTintFrame] getColor
-- @param self
-- @return color3b_table#color3b_table ret (return value: color3b_table)
--------------------------------
-- @function [parent=#ActionTintFrame] getAction
-- @param self
-- @param #float float
-- @return ActionInterval#ActionInterval ret (return value: cc.ActionInterval)
--------------------------------
-- @function [parent=#ActionTintFrame] setColor
-- @param self
-- @param #color3b_table color3b
--------------------------------
-- @function [parent=#ActionTintFrame] ActionTintFrame
-- @param self
return nil

View File

@ -0,0 +1,31 @@
--------------------------------
-- @module AnchorPointFrame
-- @extend Frame
-- @parent_module ccs
--------------------------------
-- @function [parent=#AnchorPointFrame] setAnchorPoint
-- @param self
-- @param #vec2_table vec2
--------------------------------
-- @function [parent=#AnchorPointFrame] getAnchorPoint
-- @param self
-- @return vec2_table#vec2_table ret (return value: vec2_table)
--------------------------------
-- @function [parent=#AnchorPointFrame] create
-- @param self
-- @return AnchorPointFrame#AnchorPointFrame ret (return value: ccs.AnchorPointFrame)
--------------------------------
-- @function [parent=#AnchorPointFrame] clone
-- @param self
-- @return Frame#Frame ret (return value: ccs.Frame)
--------------------------------
-- @function [parent=#AnchorPointFrame] AnchorPointFrame
-- @param self
return nil

View File

@ -0,0 +1,46 @@
--------------------------------
-- @module ColorFrame
-- @extend Frame
-- @parent_module ccs
--------------------------------
-- @function [parent=#ColorFrame] getAlpha
-- @param self
-- @return unsigned char#unsigned char ret (return value: unsigned char)
--------------------------------
-- @function [parent=#ColorFrame] getColor
-- @param self
-- @return color3b_table#color3b_table ret (return value: color3b_table)
--------------------------------
-- @function [parent=#ColorFrame] setAlpha
-- @param self
-- @param #unsigned char char
--------------------------------
-- @function [parent=#ColorFrame] setColor
-- @param self
-- @param #color3b_table color3b
--------------------------------
-- @function [parent=#ColorFrame] create
-- @param self
-- @return ColorFrame#ColorFrame ret (return value: ccs.ColorFrame)
--------------------------------
-- @function [parent=#ColorFrame] apply
-- @param self
-- @param #float float
--------------------------------
-- @function [parent=#ColorFrame] clone
-- @param self
-- @return Frame#Frame ret (return value: ccs.Frame)
--------------------------------
-- @function [parent=#ColorFrame] ColorFrame
-- @param self
return nil

View File

@ -0,0 +1,31 @@
--------------------------------
-- @module EventFrame
-- @extend Frame
-- @parent_module ccs
--------------------------------
-- @function [parent=#EventFrame] setEvent
-- @param self
-- @param #string str
--------------------------------
-- @function [parent=#EventFrame] getEvent
-- @param self
-- @return string#string ret (return value: string)
--------------------------------
-- @function [parent=#EventFrame] create
-- @param self
-- @return EventFrame#EventFrame ret (return value: ccs.EventFrame)
--------------------------------
-- @function [parent=#EventFrame] clone
-- @param self
-- @return Frame#Frame ret (return value: ccs.Frame)
--------------------------------
-- @function [parent=#EventFrame] EventFrame
-- @param self
return nil

View File

@ -0,0 +1,57 @@
--------------------------------
-- @module Frame
-- @extend Ref
-- @parent_module ccs
--------------------------------
-- @function [parent=#Frame] clone
-- @param self
-- @return Frame#Frame ret (return value: ccs.Frame)
--------------------------------
-- @function [parent=#Frame] setNode
-- @param self
-- @param #cc.Node node
--------------------------------
-- @function [parent=#Frame] setTimeline
-- @param self
-- @param #ccs.Timeline timeline
--------------------------------
-- @function [parent=#Frame] getFrameIndex
-- @param self
-- @return unsigned int#unsigned int ret (return value: unsigned int)
--------------------------------
-- @function [parent=#Frame] apply
-- @param self
-- @param #float float
--------------------------------
-- @function [parent=#Frame] isTween
-- @param self
-- @return bool#bool ret (return value: bool)
--------------------------------
-- @function [parent=#Frame] setFrameIndex
-- @param self
-- @param #unsigned int int
--------------------------------
-- @function [parent=#Frame] setTween
-- @param self
-- @param #bool bool
--------------------------------
-- @function [parent=#Frame] getTimeline
-- @param self
-- @return Timeline#Timeline ret (return value: ccs.Timeline)
--------------------------------
-- @function [parent=#Frame] getNode
-- @param self
-- @return Node#Node ret (return value: cc.Node)
return nil

View File

@ -0,0 +1,41 @@
--------------------------------
-- @module InnerActionFrame
-- @extend Frame
-- @parent_module ccs
--------------------------------
-- @function [parent=#InnerActionFrame] getInnerActionType
-- @param self
-- @return InnerActionType#InnerActionType ret (return value: ccs.InnerActionType)
--------------------------------
-- @function [parent=#InnerActionFrame] setStartFrameIndex
-- @param self
-- @param #int int
--------------------------------
-- @function [parent=#InnerActionFrame] setInnerActionType
-- @param self
-- @param #ccs.InnerActionType inneractiontype
--------------------------------
-- @function [parent=#InnerActionFrame] getStartFrameIndex
-- @param self
-- @return int#int ret (return value: int)
--------------------------------
-- @function [parent=#InnerActionFrame] create
-- @param self
-- @return InnerActionFrame#InnerActionFrame ret (return value: ccs.InnerActionFrame)
--------------------------------
-- @function [parent=#InnerActionFrame] clone
-- @param self
-- @return Frame#Frame ret (return value: ccs.Frame)
--------------------------------
-- @function [parent=#InnerActionFrame] InnerActionFrame
-- @param self
return nil

View File

@ -0,0 +1,59 @@
--------------------------------
-- @module NodeReader
--------------------------------
-- @function [parent=#NodeReader] setJsonPath
-- @param self
-- @param #string str
--------------------------------
-- @function [parent=#NodeReader] createNode
-- @param self
-- @param #string str
-- @return Node#Node ret (return value: cc.Node)
--------------------------------
-- @function [parent=#NodeReader] loadNodeWithFile
-- @param self
-- @param #string str
-- @return Node#Node ret (return value: cc.Node)
--------------------------------
-- @function [parent=#NodeReader] purge
-- @param self
--------------------------------
-- @function [parent=#NodeReader] init
-- @param self
--------------------------------
-- @function [parent=#NodeReader] loadNodeWithContent
-- @param self
-- @param #string str
-- @return Node#Node ret (return value: cc.Node)
--------------------------------
-- @function [parent=#NodeReader] isRecordJsonPath
-- @param self
-- @return bool#bool ret (return value: bool)
--------------------------------
-- @function [parent=#NodeReader] getJsonPath
-- @param self
-- @return string#string ret (return value: string)
--------------------------------
-- @function [parent=#NodeReader] setRecordJsonPath
-- @param self
-- @param #bool bool
--------------------------------
-- @function [parent=#NodeReader] destroyInstance
-- @param self
--------------------------------
-- @function [parent=#NodeReader] NodeReader
-- @param self
return nil

View File

@ -0,0 +1,56 @@
--------------------------------
-- @module PositionFrame
-- @extend Frame
-- @parent_module ccs
--------------------------------
-- @function [parent=#PositionFrame] getX
-- @param self
-- @return float#float ret (return value: float)
--------------------------------
-- @function [parent=#PositionFrame] getY
-- @param self
-- @return float#float ret (return value: float)
--------------------------------
-- @function [parent=#PositionFrame] setPosition
-- @param self
-- @param #vec2_table vec2
--------------------------------
-- @function [parent=#PositionFrame] setX
-- @param self
-- @param #float float
--------------------------------
-- @function [parent=#PositionFrame] setY
-- @param self
-- @param #float float
--------------------------------
-- @function [parent=#PositionFrame] getPosition
-- @param self
-- @return vec2_table#vec2_table ret (return value: vec2_table)
--------------------------------
-- @function [parent=#PositionFrame] create
-- @param self
-- @return PositionFrame#PositionFrame ret (return value: ccs.PositionFrame)
--------------------------------
-- @function [parent=#PositionFrame] apply
-- @param self
-- @param #float float
--------------------------------
-- @function [parent=#PositionFrame] clone
-- @param self
-- @return Frame#Frame ret (return value: ccs.Frame)
--------------------------------
-- @function [parent=#PositionFrame] PositionFrame
-- @param self
return nil

View File

@ -0,0 +1,36 @@
--------------------------------
-- @module RotationFrame
-- @extend Frame
-- @parent_module ccs
--------------------------------
-- @function [parent=#RotationFrame] setRotation
-- @param self
-- @param #float float
--------------------------------
-- @function [parent=#RotationFrame] getRotation
-- @param self
-- @return float#float ret (return value: float)
--------------------------------
-- @function [parent=#RotationFrame] create
-- @param self
-- @return RotationFrame#RotationFrame ret (return value: ccs.RotationFrame)
--------------------------------
-- @function [parent=#RotationFrame] apply
-- @param self
-- @param #float float
--------------------------------
-- @function [parent=#RotationFrame] clone
-- @param self
-- @return Frame#Frame ret (return value: ccs.Frame)
--------------------------------
-- @function [parent=#RotationFrame] RotationFrame
-- @param self
return nil

View File

@ -0,0 +1,26 @@
--------------------------------
-- @module RotationSkewFrame
-- @extend SkewFrame
-- @parent_module ccs
--------------------------------
-- @function [parent=#RotationSkewFrame] create
-- @param self
-- @return RotationSkewFrame#RotationSkewFrame ret (return value: ccs.RotationSkewFrame)
--------------------------------
-- @function [parent=#RotationSkewFrame] apply
-- @param self
-- @param #float float
--------------------------------
-- @function [parent=#RotationSkewFrame] clone
-- @param self
-- @return Frame#Frame ret (return value: ccs.Frame)
--------------------------------
-- @function [parent=#RotationSkewFrame] RotationSkewFrame
-- @param self
return nil

View File

@ -0,0 +1,51 @@
--------------------------------
-- @module ScaleFrame
-- @extend Frame
-- @parent_module ccs
--------------------------------
-- @function [parent=#ScaleFrame] setScaleY
-- @param self
-- @param #float float
--------------------------------
-- @function [parent=#ScaleFrame] setScaleX
-- @param self
-- @param #float float
--------------------------------
-- @function [parent=#ScaleFrame] getScaleY
-- @param self
-- @return float#float ret (return value: float)
--------------------------------
-- @function [parent=#ScaleFrame] getScaleX
-- @param self
-- @return float#float ret (return value: float)
--------------------------------
-- @function [parent=#ScaleFrame] setScale
-- @param self
-- @param #float float
--------------------------------
-- @function [parent=#ScaleFrame] create
-- @param self
-- @return ScaleFrame#ScaleFrame ret (return value: ccs.ScaleFrame)
--------------------------------
-- @function [parent=#ScaleFrame] apply
-- @param self
-- @param #float float
--------------------------------
-- @function [parent=#ScaleFrame] clone
-- @param self
-- @return Frame#Frame ret (return value: ccs.Frame)
--------------------------------
-- @function [parent=#ScaleFrame] ScaleFrame
-- @param self
return nil

View File

@ -0,0 +1,46 @@
--------------------------------
-- @module SkewFrame
-- @extend Frame
-- @parent_module ccs
--------------------------------
-- @function [parent=#SkewFrame] getSkewY
-- @param self
-- @return float#float ret (return value: float)
--------------------------------
-- @function [parent=#SkewFrame] setSkewX
-- @param self
-- @param #float float
--------------------------------
-- @function [parent=#SkewFrame] setSkewY
-- @param self
-- @param #float float
--------------------------------
-- @function [parent=#SkewFrame] getSkewX
-- @param self
-- @return float#float ret (return value: float)
--------------------------------
-- @function [parent=#SkewFrame] create
-- @param self
-- @return SkewFrame#SkewFrame ret (return value: ccs.SkewFrame)
--------------------------------
-- @function [parent=#SkewFrame] apply
-- @param self
-- @param #float float
--------------------------------
-- @function [parent=#SkewFrame] clone
-- @param self
-- @return Frame#Frame ret (return value: ccs.Frame)
--------------------------------
-- @function [parent=#SkewFrame] SkewFrame
-- @param self
return nil

View File

@ -0,0 +1,36 @@
--------------------------------
-- @module TextureFrame
-- @extend Frame
-- @parent_module ccs
--------------------------------
-- @function [parent=#TextureFrame] getTextureName
-- @param self
-- @return string#string ret (return value: string)
--------------------------------
-- @function [parent=#TextureFrame] setNode
-- @param self
-- @param #cc.Node node
--------------------------------
-- @function [parent=#TextureFrame] setTextureName
-- @param self
-- @param #string str
--------------------------------
-- @function [parent=#TextureFrame] create
-- @param self
-- @return TextureFrame#TextureFrame ret (return value: ccs.TextureFrame)
--------------------------------
-- @function [parent=#TextureFrame] clone
-- @param self
-- @return Frame#Frame ret (return value: ccs.Frame)
--------------------------------
-- @function [parent=#TextureFrame] TextureFrame
-- @param self
return nil

View File

@ -0,0 +1,82 @@
--------------------------------
-- @module Timeline
-- @extend Ref
-- @parent_module ccs
--------------------------------
-- @function [parent=#Timeline] clone
-- @param self
-- @return Timeline#Timeline ret (return value: ccs.Timeline)
--------------------------------
-- @function [parent=#Timeline] gotoFrame
-- @param self
-- @param #int int
--------------------------------
-- @function [parent=#Timeline] setNode
-- @param self
-- @param #cc.Node node
--------------------------------
-- @function [parent=#Timeline] getActionTimeline
-- @param self
-- @return ActionTimeline#ActionTimeline ret (return value: ccs.ActionTimeline)
--------------------------------
-- @function [parent=#Timeline] insertFrame
-- @param self
-- @param #ccs.Frame frame
-- @param #int int
--------------------------------
-- @function [parent=#Timeline] setActionTag
-- @param self
-- @param #int int
--------------------------------
-- @function [parent=#Timeline] addFrame
-- @param self
-- @param #ccs.Frame frame
--------------------------------
-- @function [parent=#Timeline] getFrames
-- @param self
-- @return array_table#array_table ret (return value: array_table)
--------------------------------
-- @function [parent=#Timeline] getActionTag
-- @param self
-- @return int#int ret (return value: int)
--------------------------------
-- @function [parent=#Timeline] getNode
-- @param self
-- @return Node#Node ret (return value: cc.Node)
--------------------------------
-- @function [parent=#Timeline] removeFrame
-- @param self
-- @param #ccs.Frame frame
--------------------------------
-- @function [parent=#Timeline] setActionTimeline
-- @param self
-- @param #ccs.ActionTimeline actiontimeline
--------------------------------
-- @function [parent=#Timeline] stepToFrame
-- @param self
-- @param #int int
--------------------------------
-- @function [parent=#Timeline] create
-- @param self
-- @return Timeline#Timeline ret (return value: ccs.Timeline)
--------------------------------
-- @function [parent=#Timeline] Timeline
-- @param self
return nil

View File

@ -0,0 +1,31 @@
--------------------------------
-- @module VisibleFrame
-- @extend Frame
-- @parent_module ccs
--------------------------------
-- @function [parent=#VisibleFrame] isVisible
-- @param self
-- @return bool#bool ret (return value: bool)
--------------------------------
-- @function [parent=#VisibleFrame] setVisible
-- @param self
-- @param #bool bool
--------------------------------
-- @function [parent=#VisibleFrame] create
-- @param self
-- @return VisibleFrame#VisibleFrame ret (return value: ccs.VisibleFrame)
--------------------------------
-- @function [parent=#VisibleFrame] clone
-- @param self
-- @return Frame#Frame ret (return value: ccs.Frame)
--------------------------------
-- @function [parent=#VisibleFrame] VisibleFrame
-- @param self
return nil

View File

@ -0,0 +1,31 @@
--------------------------------
-- @module ZOrderFrame
-- @extend Frame
-- @parent_module ccs
--------------------------------
-- @function [parent=#ZOrderFrame] getZOrder
-- @param self
-- @return int#int ret (return value: int)
--------------------------------
-- @function [parent=#ZOrderFrame] setZOrder
-- @param self
-- @param #int int
--------------------------------
-- @function [parent=#ZOrderFrame] create
-- @param self
-- @return ZOrderFrame#ZOrderFrame ret (return value: ccs.ZOrderFrame)
--------------------------------
-- @function [parent=#ZOrderFrame] clone
-- @param self
-- @return Frame#Frame ret (return value: ccs.Frame)
--------------------------------
-- @function [parent=#ZOrderFrame] ZOrderFrame
-- @param self
return nil

View File

@ -1,6 +1,36 @@
--------------------------------
-- @module ccs
--------------------------------------------------------
-- the ccs ActionFrame
-- @field [parent=#ccs] ActionFrame#ActionFrame ActionFrame preloaded module
--------------------------------------------------------
-- the ccs ActionMoveFrame
-- @field [parent=#ccs] ActionMoveFrame#ActionMoveFrame ActionMoveFrame preloaded module
--------------------------------------------------------
-- the ccs ActionScaleFrame
-- @field [parent=#ccs] ActionScaleFrame#ActionScaleFrame ActionScaleFrame preloaded module
--------------------------------------------------------
-- the ccs ActionRotationFrame
-- @field [parent=#ccs] ActionRotationFrame#ActionRotationFrame ActionRotationFrame preloaded module
--------------------------------------------------------
-- the ccs ActionFadeFrame
-- @field [parent=#ccs] ActionFadeFrame#ActionFadeFrame ActionFadeFrame preloaded module
--------------------------------------------------------
-- the ccs ActionTintFrame
-- @field [parent=#ccs] ActionTintFrame#ActionTintFrame ActionTintFrame preloaded module
--------------------------------------------------------
-- the ccs ActionObject
-- @field [parent=#ccs] ActionObject#ActionObject ActionObject preloaded module
@ -146,9 +176,94 @@
-- @field [parent=#ccs] SceneReader#SceneReader SceneReader preloaded module
--------------------------------------------------------
-- the ccs NodeReader
-- @field [parent=#ccs] NodeReader#NodeReader NodeReader preloaded module
--------------------------------------------------------
-- the ccs ActionTimelineCache
-- @field [parent=#ccs] ActionTimelineCache#ActionTimelineCache ActionTimelineCache preloaded module
--------------------------------------------------------
-- the ccs Frame
-- @field [parent=#ccs] Frame#Frame Frame preloaded module
--------------------------------------------------------
-- the ccs VisibleFrame
-- @field [parent=#ccs] VisibleFrame#VisibleFrame VisibleFrame preloaded module
--------------------------------------------------------
-- the ccs TextureFrame
-- @field [parent=#ccs] TextureFrame#TextureFrame TextureFrame preloaded module
--------------------------------------------------------
-- the ccs RotationFrame
-- @field [parent=#ccs] RotationFrame#RotationFrame RotationFrame preloaded module
--------------------------------------------------------
-- the ccs SkewFrame
-- @field [parent=#ccs] SkewFrame#SkewFrame SkewFrame preloaded module
--------------------------------------------------------
-- the ccs RotationSkewFrame
-- @field [parent=#ccs] RotationSkewFrame#RotationSkewFrame RotationSkewFrame preloaded module
--------------------------------------------------------
-- the ccs PositionFrame
-- @field [parent=#ccs] PositionFrame#PositionFrame PositionFrame preloaded module
--------------------------------------------------------
-- the ccs ScaleFrame
-- @field [parent=#ccs] ScaleFrame#ScaleFrame ScaleFrame preloaded module
--------------------------------------------------------
-- the ccs AnchorPointFrame
-- @field [parent=#ccs] AnchorPointFrame#AnchorPointFrame AnchorPointFrame preloaded module
--------------------------------------------------------
-- the ccs InnerActionFrame
-- @field [parent=#ccs] InnerActionFrame#InnerActionFrame InnerActionFrame preloaded module
--------------------------------------------------------
-- the ccs ColorFrame
-- @field [parent=#ccs] ColorFrame#ColorFrame ColorFrame preloaded module
--------------------------------------------------------
-- the ccs EventFrame
-- @field [parent=#ccs] EventFrame#EventFrame EventFrame preloaded module
--------------------------------------------------------
-- the ccs ZOrderFrame
-- @field [parent=#ccs] ZOrderFrame#ZOrderFrame ZOrderFrame preloaded module
--------------------------------------------------------
-- the ccs Timeline
-- @field [parent=#ccs] Timeline#Timeline Timeline preloaded module
--------------------------------------------------------
-- the ccs ActionTimelineData
-- @field [parent=#ccs] ActionTimelineData#ActionTimelineData ActionTimelineData preloaded module
--------------------------------------------------------
-- the ccs ActionTimeline
-- @field [parent=#ccs] ActionTimeline#ActionTimeline ActionTimeline preloaded module
return nil

File diff suppressed because it is too large Load Diff

View File

@ -1312,7 +1312,7 @@ static int lua_cocos2dx_extension_Scale9Sprite_finalize(lua_State* tolua_S)
int lua_register_cocos2dx_extension_Scale9Sprite(lua_State* tolua_S)
{
tolua_usertype(tolua_S,"cc.Scale9Sprite");
tolua_cclass(tolua_S,"Scale9Sprite","cc.Scale9Sprite","cc.Node",nullptr);
tolua_cclass(tolua_S,"Scale9Sprite","cc.Scale9Sprite","cc.Node",nullptr);
tolua_beginmodule(tolua_S,"Scale9Sprite");
tolua_function(tolua_S,"new",lua_cocos2dx_extension_Scale9Sprite_constructor);
@ -2125,7 +2125,7 @@ static int lua_cocos2dx_extension_Control_finalize(lua_State* tolua_S)
int lua_register_cocos2dx_extension_Control(lua_State* tolua_S)
{
tolua_usertype(tolua_S,"cc.Control");
tolua_cclass(tolua_S,"Control","cc.Control","cc.Layer",nullptr);
tolua_cclass(tolua_S,"Control","cc.Control","cc.Layer",nullptr);
tolua_beginmodule(tolua_S,"Control");
tolua_function(tolua_S,"setEnabled",lua_cocos2dx_extension_Control_setEnabled);
@ -4045,7 +4045,7 @@ static int lua_cocos2dx_extension_ControlButton_finalize(lua_State* tolua_S)
int lua_register_cocos2dx_extension_ControlButton(lua_State* tolua_S)
{
tolua_usertype(tolua_S,"cc.ControlButton");
tolua_cclass(tolua_S,"ControlButton","cc.ControlButton","cc.Control",nullptr);
tolua_cclass(tolua_S,"ControlButton","cc.ControlButton","cc.Control",nullptr);
tolua_beginmodule(tolua_S,"ControlButton");
tolua_function(tolua_S,"isPushed",lua_cocos2dx_extension_ControlButton_isPushed);
@ -4673,7 +4673,7 @@ static int lua_cocos2dx_extension_ControlHuePicker_finalize(lua_State* tolua_S)
int lua_register_cocos2dx_extension_ControlHuePicker(lua_State* tolua_S)
{
tolua_usertype(tolua_S,"cc.ControlHuePicker");
tolua_cclass(tolua_S,"ControlHuePicker","cc.ControlHuePicker","cc.Control",nullptr);
tolua_cclass(tolua_S,"ControlHuePicker","cc.ControlHuePicker","cc.Control",nullptr);
tolua_beginmodule(tolua_S,"ControlHuePicker");
tolua_function(tolua_S,"new",lua_cocos2dx_extension_ControlHuePicker_constructor);
@ -5178,7 +5178,7 @@ static int lua_cocos2dx_extension_ControlSaturationBrightnessPicker_finalize(lua
int lua_register_cocos2dx_extension_ControlSaturationBrightnessPicker(lua_State* tolua_S)
{
tolua_usertype(tolua_S,"cc.ControlSaturationBrightnessPicker");
tolua_cclass(tolua_S,"ControlSaturationBrightnessPicker","cc.ControlSaturationBrightnessPicker","cc.Control",nullptr);
tolua_cclass(tolua_S,"ControlSaturationBrightnessPicker","cc.ControlSaturationBrightnessPicker","cc.Control",nullptr);
tolua_beginmodule(tolua_S,"ControlSaturationBrightnessPicker");
tolua_function(tolua_S,"new",lua_cocos2dx_extension_ControlSaturationBrightnessPicker_constructor);
@ -5777,7 +5777,7 @@ static int lua_cocos2dx_extension_ControlColourPicker_finalize(lua_State* tolua_
int lua_register_cocos2dx_extension_ControlColourPicker(lua_State* tolua_S)
{
tolua_usertype(tolua_S,"cc.ControlColourPicker");
tolua_cclass(tolua_S,"ControlColourPicker","cc.ControlColourPicker","cc.Control",nullptr);
tolua_cclass(tolua_S,"ControlColourPicker","cc.ControlColourPicker","cc.Control",nullptr);
tolua_beginmodule(tolua_S,"ControlColourPicker");
tolua_function(tolua_S,"new",lua_cocos2dx_extension_ControlColourPicker_constructor);
@ -6717,7 +6717,7 @@ static int lua_cocos2dx_extension_ControlPotentiometer_finalize(lua_State* tolua
int lua_register_cocos2dx_extension_ControlPotentiometer(lua_State* tolua_S)
{
tolua_usertype(tolua_S,"cc.ControlPotentiometer");
tolua_cclass(tolua_S,"ControlPotentiometer","cc.ControlPotentiometer","cc.Control",nullptr);
tolua_cclass(tolua_S,"ControlPotentiometer","cc.ControlPotentiometer","cc.Control",nullptr);
tolua_beginmodule(tolua_S,"ControlPotentiometer");
tolua_function(tolua_S,"new",lua_cocos2dx_extension_ControlPotentiometer_constructor);
@ -7962,7 +7962,7 @@ static int lua_cocos2dx_extension_ControlSlider_finalize(lua_State* tolua_S)
int lua_register_cocos2dx_extension_ControlSlider(lua_State* tolua_S)
{
tolua_usertype(tolua_S,"cc.ControlSlider");
tolua_cclass(tolua_S,"ControlSlider","cc.ControlSlider","cc.Control",nullptr);
tolua_cclass(tolua_S,"ControlSlider","cc.ControlSlider","cc.Control",nullptr);
tolua_beginmodule(tolua_S,"ControlSlider");
tolua_function(tolua_S,"new",lua_cocos2dx_extension_ControlSlider_constructor);
@ -9030,7 +9030,7 @@ static int lua_cocos2dx_extension_ControlStepper_finalize(lua_State* tolua_S)
int lua_register_cocos2dx_extension_ControlStepper(lua_State* tolua_S)
{
tolua_usertype(tolua_S,"cc.ControlStepper");
tolua_cclass(tolua_S,"ControlStepper","cc.ControlStepper","cc.Control",nullptr);
tolua_cclass(tolua_S,"ControlStepper","cc.ControlStepper","cc.Control",nullptr);
tolua_beginmodule(tolua_S,"ControlStepper");
tolua_function(tolua_S,"new",lua_cocos2dx_extension_ControlStepper_constructor);
@ -9503,7 +9503,7 @@ static int lua_cocos2dx_extension_ControlSwitch_finalize(lua_State* tolua_S)
int lua_register_cocos2dx_extension_ControlSwitch(lua_State* tolua_S)
{
tolua_usertype(tolua_S,"cc.ControlSwitch");
tolua_cclass(tolua_S,"ControlSwitch","cc.ControlSwitch","cc.Control",nullptr);
tolua_cclass(tolua_S,"ControlSwitch","cc.ControlSwitch","cc.Control",nullptr);
tolua_beginmodule(tolua_S,"ControlSwitch");
tolua_function(tolua_S,"new",lua_cocos2dx_extension_ControlSwitch_constructor);
@ -11176,7 +11176,7 @@ static int lua_cocos2dx_extension_ScrollView_finalize(lua_State* tolua_S)
int lua_register_cocos2dx_extension_ScrollView(lua_State* tolua_S)
{
tolua_usertype(tolua_S,"cc.ScrollView");
tolua_cclass(tolua_S,"ScrollView","cc.ScrollView","cc.Layer",nullptr);
tolua_cclass(tolua_S,"ScrollView","cc.ScrollView","cc.Layer",nullptr);
tolua_beginmodule(tolua_S,"ScrollView");
tolua_function(tolua_S,"new",lua_cocos2dx_extension_ScrollView_constructor);
@ -11428,7 +11428,7 @@ static int lua_cocos2dx_extension_TableViewCell_finalize(lua_State* tolua_S)
int lua_register_cocos2dx_extension_TableViewCell(lua_State* tolua_S)
{
tolua_usertype(tolua_S,"cc.TableViewCell");
tolua_cclass(tolua_S,"TableViewCell","cc.TableViewCell","cc.Node",nullptr);
tolua_cclass(tolua_S,"TableViewCell","cc.TableViewCell","cc.Node",nullptr);
tolua_beginmodule(tolua_S,"TableViewCell");
tolua_function(tolua_S,"new",lua_cocos2dx_extension_TableViewCell_constructor);
@ -12044,7 +12044,7 @@ static int lua_cocos2dx_extension_TableView_finalize(lua_State* tolua_S)
int lua_register_cocos2dx_extension_TableView(lua_State* tolua_S)
{
tolua_usertype(tolua_S,"cc.TableView");
tolua_cclass(tolua_S,"TableView","cc.TableView","cc.ScrollView",nullptr);
tolua_cclass(tolua_S,"TableView","cc.TableView","cc.ScrollView",nullptr);
tolua_beginmodule(tolua_S,"TableView");
tolua_function(tolua_S,"new",lua_cocos2dx_extension_TableView_constructor);
@ -13007,7 +13007,7 @@ static int lua_cocos2dx_extension_EditBox_finalize(lua_State* tolua_S)
int lua_register_cocos2dx_extension_EditBox(lua_State* tolua_S)
{
tolua_usertype(tolua_S,"cc.EditBox");
tolua_cclass(tolua_S,"EditBox","cc.EditBox","cc.ControlButton",nullptr);
tolua_cclass(tolua_S,"EditBox","cc.EditBox","cc.ControlButton",nullptr);
tolua_beginmodule(tolua_S,"EditBox");
tolua_function(tolua_S,"new",lua_cocos2dx_extension_EditBox_constructor);
@ -13720,7 +13720,7 @@ static int lua_cocos2dx_extension_AssetsManager_finalize(lua_State* tolua_S)
int lua_register_cocos2dx_extension_AssetsManager(lua_State* tolua_S)
{
tolua_usertype(tolua_S,"cc.AssetsManager");
tolua_cclass(tolua_S,"AssetsManager","cc.AssetsManager","cc.Node",nullptr);
tolua_cclass(tolua_S,"AssetsManager","cc.AssetsManager","cc.Node",nullptr);
tolua_beginmodule(tolua_S,"AssetsManager");
tolua_function(tolua_S,"new",lua_cocos2dx_extension_AssetsManager_constructor);
@ -15438,7 +15438,7 @@ static int lua_cocos2dx_extension_CCBAnimationManager_finalize(lua_State* tolua_
int lua_register_cocos2dx_extension_CCBAnimationManager(lua_State* tolua_S)
{
tolua_usertype(tolua_S,"cc.CCBAnimationManager");
tolua_cclass(tolua_S,"CCBAnimationManager","cc.CCBAnimationManager","cc.Ref",nullptr);
tolua_cclass(tolua_S,"CCBAnimationManager","cc.CCBAnimationManager","cc.Ref",nullptr);
tolua_beginmodule(tolua_S,"CCBAnimationManager");
tolua_function(tolua_S,"new",lua_cocos2dx_extension_CCBAnimationManager_constructor);
@ -16466,7 +16466,7 @@ static int lua_cocos2dx_extension_CCBReader_finalize(lua_State* tolua_S)
int lua_register_cocos2dx_extension_CCBReader(lua_State* tolua_S)
{
tolua_usertype(tolua_S,"cc.CCBReader");
tolua_cclass(tolua_S,"CCBReader","cc.CCBReader","cc.Ref",nullptr);
tolua_cclass(tolua_S,"CCBReader","cc.CCBReader","cc.Ref",nullptr);
tolua_beginmodule(tolua_S,"CCBReader");
tolua_function(tolua_S,"new",lua_cocos2dx_extension_CCBReader_constructor);

View File

@ -2169,7 +2169,7 @@ static int lua_cocos2dx_physics_PhysicsShape_finalize(lua_State* tolua_S)
int lua_register_cocos2dx_physics_PhysicsShape(lua_State* tolua_S)
{
tolua_usertype(tolua_S,"cc.PhysicsShape");
tolua_cclass(tolua_S,"PhysicsShape","cc.PhysicsShape","cc.Ref",nullptr);
tolua_cclass(tolua_S,"PhysicsShape","cc.PhysicsShape","cc.Ref",nullptr);
tolua_beginmodule(tolua_S,"PhysicsShape");
tolua_function(tolua_S,"getFriction",lua_cocos2dx_physics_PhysicsShape_getFriction);
@ -2402,7 +2402,7 @@ static int lua_cocos2dx_physics_PhysicsShapeCircle_finalize(lua_State* tolua_S)
int lua_register_cocos2dx_physics_PhysicsShapeCircle(lua_State* tolua_S)
{
tolua_usertype(tolua_S,"cc.PhysicsShapeCircle");
tolua_cclass(tolua_S,"PhysicsShapeCircle","cc.PhysicsShapeCircle","cc.PhysicsShape",nullptr);
tolua_cclass(tolua_S,"PhysicsShapeCircle","cc.PhysicsShapeCircle","cc.PhysicsShape",nullptr);
tolua_beginmodule(tolua_S,"PhysicsShapeCircle");
tolua_function(tolua_S,"getRadius",lua_cocos2dx_physics_PhysicsShapeCircle_getRadius);
@ -2654,7 +2654,7 @@ static int lua_cocos2dx_physics_PhysicsShapeBox_finalize(lua_State* tolua_S)
int lua_register_cocos2dx_physics_PhysicsShapeBox(lua_State* tolua_S)
{
tolua_usertype(tolua_S,"cc.PhysicsShapeBox");
tolua_cclass(tolua_S,"PhysicsShapeBox","cc.PhysicsShapeBox","cc.PhysicsShape",nullptr);
tolua_cclass(tolua_S,"PhysicsShapeBox","cc.PhysicsShapeBox","cc.PhysicsShape",nullptr);
tolua_beginmodule(tolua_S,"PhysicsShapeBox");
tolua_function(tolua_S,"getPointsCount",lua_cocos2dx_physics_PhysicsShapeBox_getPointsCount);
@ -2769,7 +2769,7 @@ static int lua_cocos2dx_physics_PhysicsShapePolygon_finalize(lua_State* tolua_S)
int lua_register_cocos2dx_physics_PhysicsShapePolygon(lua_State* tolua_S)
{
tolua_usertype(tolua_S,"cc.PhysicsShapePolygon");
tolua_cclass(tolua_S,"PhysicsShapePolygon","cc.PhysicsShapePolygon","cc.PhysicsShape",nullptr);
tolua_cclass(tolua_S,"PhysicsShapePolygon","cc.PhysicsShapePolygon","cc.PhysicsShape",nullptr);
tolua_beginmodule(tolua_S,"PhysicsShapePolygon");
tolua_function(tolua_S,"getPointsCount",lua_cocos2dx_physics_PhysicsShapePolygon_getPointsCount);
@ -2943,7 +2943,7 @@ static int lua_cocos2dx_physics_PhysicsShapeEdgeSegment_finalize(lua_State* tolu
int lua_register_cocos2dx_physics_PhysicsShapeEdgeSegment(lua_State* tolua_S)
{
tolua_usertype(tolua_S,"cc.PhysicsShapeEdgeSegment");
tolua_cclass(tolua_S,"PhysicsShapeEdgeSegment","cc.PhysicsShapeEdgeSegment","cc.PhysicsShape",nullptr);
tolua_cclass(tolua_S,"PhysicsShapeEdgeSegment","cc.PhysicsShapeEdgeSegment","cc.PhysicsShape",nullptr);
tolua_beginmodule(tolua_S,"PhysicsShapeEdgeSegment");
tolua_function(tolua_S,"getPointB",lua_cocos2dx_physics_PhysicsShapeEdgeSegment_getPointB);
@ -3084,7 +3084,7 @@ static int lua_cocos2dx_physics_PhysicsShapeEdgeBox_finalize(lua_State* tolua_S)
int lua_register_cocos2dx_physics_PhysicsShapeEdgeBox(lua_State* tolua_S)
{
tolua_usertype(tolua_S,"cc.PhysicsShapeEdgeBox");
tolua_cclass(tolua_S,"PhysicsShapeEdgeBox","cc.PhysicsShapeEdgeBox","cc.PhysicsShape",nullptr);
tolua_cclass(tolua_S,"PhysicsShapeEdgeBox","cc.PhysicsShapeEdgeBox","cc.PhysicsShape",nullptr);
tolua_beginmodule(tolua_S,"PhysicsShapeEdgeBox");
tolua_function(tolua_S,"getPointsCount",lua_cocos2dx_physics_PhysicsShapeEdgeBox_getPointsCount);
@ -3149,7 +3149,7 @@ static int lua_cocos2dx_physics_PhysicsShapeEdgePolygon_finalize(lua_State* tolu
int lua_register_cocos2dx_physics_PhysicsShapeEdgePolygon(lua_State* tolua_S)
{
tolua_usertype(tolua_S,"cc.PhysicsShapeEdgePolygon");
tolua_cclass(tolua_S,"PhysicsShapeEdgePolygon","cc.PhysicsShapeEdgePolygon","cc.PhysicsShape",nullptr);
tolua_cclass(tolua_S,"PhysicsShapeEdgePolygon","cc.PhysicsShapeEdgePolygon","cc.PhysicsShape",nullptr);
tolua_beginmodule(tolua_S,"PhysicsShapeEdgePolygon");
tolua_function(tolua_S,"getPointsCount",lua_cocos2dx_physics_PhysicsShapeEdgePolygon_getPointsCount);
@ -3213,7 +3213,7 @@ static int lua_cocos2dx_physics_PhysicsShapeEdgeChain_finalize(lua_State* tolua_
int lua_register_cocos2dx_physics_PhysicsShapeEdgeChain(lua_State* tolua_S)
{
tolua_usertype(tolua_S,"cc.PhysicsShapeEdgeChain");
tolua_cclass(tolua_S,"PhysicsShapeEdgeChain","cc.PhysicsShapeEdgeChain","cc.PhysicsShape",nullptr);
tolua_cclass(tolua_S,"PhysicsShapeEdgeChain","cc.PhysicsShapeEdgeChain","cc.PhysicsShape",nullptr);
tolua_beginmodule(tolua_S,"PhysicsShapeEdgeChain");
tolua_function(tolua_S,"getPointsCount",lua_cocos2dx_physics_PhysicsShapeEdgeChain_getPointsCount);
@ -6386,7 +6386,7 @@ static int lua_cocos2dx_physics_PhysicsBody_finalize(lua_State* tolua_S)
int lua_register_cocos2dx_physics_PhysicsBody(lua_State* tolua_S)
{
tolua_usertype(tolua_S,"cc.PhysicsBody");
tolua_cclass(tolua_S,"PhysicsBody","cc.PhysicsBody","cc.Ref",nullptr);
tolua_cclass(tolua_S,"PhysicsBody","cc.PhysicsBody","cc.Ref",nullptr);
tolua_beginmodule(tolua_S,"PhysicsBody");
tolua_function(tolua_S,"isGravityEnabled",lua_cocos2dx_physics_PhysicsBody_isGravityEnabled);
@ -6691,7 +6691,7 @@ static int lua_cocos2dx_physics_PhysicsContact_finalize(lua_State* tolua_S)
int lua_register_cocos2dx_physics_PhysicsContact(lua_State* tolua_S)
{
tolua_usertype(tolua_S,"cc.PhysicsContact");
tolua_cclass(tolua_S,"PhysicsContact","cc.PhysicsContact","cc.EventCustom",nullptr);
tolua_cclass(tolua_S,"PhysicsContact","cc.PhysicsContact","cc.EventCustom",nullptr);
tolua_beginmodule(tolua_S,"PhysicsContact");
tolua_function(tolua_S,"getContactData",lua_cocos2dx_physics_PhysicsContact_getContactData);
@ -7239,7 +7239,7 @@ static int lua_cocos2dx_physics_EventListenerPhysicsContact_finalize(lua_State*
int lua_register_cocos2dx_physics_EventListenerPhysicsContact(lua_State* tolua_S)
{
tolua_usertype(tolua_S,"cc.EventListenerPhysicsContact");
tolua_cclass(tolua_S,"EventListenerPhysicsContact","cc.EventListenerPhysicsContact","cc.EventListenerCustom",nullptr);
tolua_cclass(tolua_S,"EventListenerPhysicsContact","cc.EventListenerPhysicsContact","cc.EventListenerCustom",nullptr);
tolua_beginmodule(tolua_S,"EventListenerPhysicsContact");
tolua_function(tolua_S,"create", lua_cocos2dx_physics_EventListenerPhysicsContact_create);
@ -7344,7 +7344,7 @@ static int lua_cocos2dx_physics_EventListenerPhysicsContactWithBodies_finalize(l
int lua_register_cocos2dx_physics_EventListenerPhysicsContactWithBodies(lua_State* tolua_S)
{
tolua_usertype(tolua_S,"cc.EventListenerPhysicsContactWithBodies");
tolua_cclass(tolua_S,"EventListenerPhysicsContactWithBodies","cc.EventListenerPhysicsContactWithBodies","cc.EventListenerPhysicsContact",nullptr);
tolua_cclass(tolua_S,"EventListenerPhysicsContactWithBodies","cc.EventListenerPhysicsContactWithBodies","cc.EventListenerPhysicsContact",nullptr);
tolua_beginmodule(tolua_S,"EventListenerPhysicsContactWithBodies");
tolua_function(tolua_S,"hitTest",lua_cocos2dx_physics_EventListenerPhysicsContactWithBodies_hitTest);
@ -7450,7 +7450,7 @@ static int lua_cocos2dx_physics_EventListenerPhysicsContactWithShapes_finalize(l
int lua_register_cocos2dx_physics_EventListenerPhysicsContactWithShapes(lua_State* tolua_S)
{
tolua_usertype(tolua_S,"cc.EventListenerPhysicsContactWithShapes");
tolua_cclass(tolua_S,"EventListenerPhysicsContactWithShapes","cc.EventListenerPhysicsContactWithShapes","cc.EventListenerPhysicsContact",nullptr);
tolua_cclass(tolua_S,"EventListenerPhysicsContactWithShapes","cc.EventListenerPhysicsContactWithShapes","cc.EventListenerPhysicsContact",nullptr);
tolua_beginmodule(tolua_S,"EventListenerPhysicsContactWithShapes");
tolua_function(tolua_S,"hitTest",lua_cocos2dx_physics_EventListenerPhysicsContactWithShapes_hitTest);
@ -7554,7 +7554,7 @@ static int lua_cocos2dx_physics_EventListenerPhysicsContactWithGroup_finalize(lu
int lua_register_cocos2dx_physics_EventListenerPhysicsContactWithGroup(lua_State* tolua_S)
{
tolua_usertype(tolua_S,"cc.EventListenerPhysicsContactWithGroup");
tolua_cclass(tolua_S,"EventListenerPhysicsContactWithGroup","cc.EventListenerPhysicsContactWithGroup","cc.EventListenerPhysicsContact",nullptr);
tolua_cclass(tolua_S,"EventListenerPhysicsContactWithGroup","cc.EventListenerPhysicsContactWithGroup","cc.EventListenerPhysicsContact",nullptr);
tolua_beginmodule(tolua_S,"EventListenerPhysicsContactWithGroup");
tolua_function(tolua_S,"hitTest",lua_cocos2dx_physics_EventListenerPhysicsContactWithGroup_hitTest);
@ -8211,7 +8211,7 @@ static int lua_cocos2dx_physics_PhysicsJointFixed_finalize(lua_State* tolua_S)
int lua_register_cocos2dx_physics_PhysicsJointFixed(lua_State* tolua_S)
{
tolua_usertype(tolua_S,"cc.PhysicsJointFixed");
tolua_cclass(tolua_S,"PhysicsJointFixed","cc.PhysicsJointFixed","cc.PhysicsJoint",nullptr);
tolua_cclass(tolua_S,"PhysicsJointFixed","cc.PhysicsJointFixed","cc.PhysicsJoint",nullptr);
tolua_beginmodule(tolua_S,"PhysicsJointFixed");
tolua_function(tolua_S,"construct", lua_cocos2dx_physics_PhysicsJointFixed_construct);
@ -8663,7 +8663,7 @@ static int lua_cocos2dx_physics_PhysicsJointLimit_finalize(lua_State* tolua_S)
int lua_register_cocos2dx_physics_PhysicsJointLimit(lua_State* tolua_S)
{
tolua_usertype(tolua_S,"cc.PhysicsJointLimit");
tolua_cclass(tolua_S,"PhysicsJointLimit","cc.PhysicsJointLimit","cc.PhysicsJoint",nullptr);
tolua_cclass(tolua_S,"PhysicsJointLimit","cc.PhysicsJointLimit","cc.PhysicsJoint",nullptr);
tolua_beginmodule(tolua_S,"PhysicsJointLimit");
tolua_function(tolua_S,"setAnchr2",lua_cocos2dx_physics_PhysicsJointLimit_setAnchr2);
@ -8728,7 +8728,7 @@ static int lua_cocos2dx_physics_PhysicsJointPin_finalize(lua_State* tolua_S)
int lua_register_cocos2dx_physics_PhysicsJointPin(lua_State* tolua_S)
{
tolua_usertype(tolua_S,"cc.PhysicsJointPin");
tolua_cclass(tolua_S,"PhysicsJointPin","cc.PhysicsJointPin","cc.PhysicsJoint",nullptr);
tolua_cclass(tolua_S,"PhysicsJointPin","cc.PhysicsJointPin","cc.PhysicsJoint",nullptr);
tolua_beginmodule(tolua_S,"PhysicsJointPin");
tolua_function(tolua_S,"construct", lua_cocos2dx_physics_PhysicsJointPin_construct);
@ -8877,7 +8877,7 @@ static int lua_cocos2dx_physics_PhysicsJointDistance_finalize(lua_State* tolua_S
int lua_register_cocos2dx_physics_PhysicsJointDistance(lua_State* tolua_S)
{
tolua_usertype(tolua_S,"cc.PhysicsJointDistance");
tolua_cclass(tolua_S,"PhysicsJointDistance","cc.PhysicsJointDistance","cc.PhysicsJoint",nullptr);
tolua_cclass(tolua_S,"PhysicsJointDistance","cc.PhysicsJointDistance","cc.PhysicsJoint",nullptr);
tolua_beginmodule(tolua_S,"PhysicsJointDistance");
tolua_function(tolua_S,"setDistance",lua_cocos2dx_physics_PhysicsJointDistance_setDistance);
@ -9392,7 +9392,7 @@ static int lua_cocos2dx_physics_PhysicsJointSpring_finalize(lua_State* tolua_S)
int lua_register_cocos2dx_physics_PhysicsJointSpring(lua_State* tolua_S)
{
tolua_usertype(tolua_S,"cc.PhysicsJointSpring");
tolua_cclass(tolua_S,"PhysicsJointSpring","cc.PhysicsJointSpring","cc.PhysicsJoint",nullptr);
tolua_cclass(tolua_S,"PhysicsJointSpring","cc.PhysicsJointSpring","cc.PhysicsJoint",nullptr);
tolua_beginmodule(tolua_S,"PhysicsJointSpring");
tolua_function(tolua_S,"setAnchr2",lua_cocos2dx_physics_PhysicsJointSpring_setAnchr2);
@ -9733,7 +9733,7 @@ static int lua_cocos2dx_physics_PhysicsJointGroove_finalize(lua_State* tolua_S)
int lua_register_cocos2dx_physics_PhysicsJointGroove(lua_State* tolua_S)
{
tolua_usertype(tolua_S,"cc.PhysicsJointGroove");
tolua_cclass(tolua_S,"PhysicsJointGroove","cc.PhysicsJointGroove","cc.PhysicsJoint",nullptr);
tolua_cclass(tolua_S,"PhysicsJointGroove","cc.PhysicsJointGroove","cc.PhysicsJoint",nullptr);
tolua_beginmodule(tolua_S,"PhysicsJointGroove");
tolua_function(tolua_S,"setAnchr2",lua_cocos2dx_physics_PhysicsJointGroove_setAnchr2);
@ -10068,7 +10068,7 @@ static int lua_cocos2dx_physics_PhysicsJointRotarySpring_finalize(lua_State* tol
int lua_register_cocos2dx_physics_PhysicsJointRotarySpring(lua_State* tolua_S)
{
tolua_usertype(tolua_S,"cc.PhysicsJointRotarySpring");
tolua_cclass(tolua_S,"PhysicsJointRotarySpring","cc.PhysicsJointRotarySpring","cc.PhysicsJoint",nullptr);
tolua_cclass(tolua_S,"PhysicsJointRotarySpring","cc.PhysicsJointRotarySpring","cc.PhysicsJoint",nullptr);
tolua_beginmodule(tolua_S,"PhysicsJointRotarySpring");
tolua_function(tolua_S,"getDamping",lua_cocos2dx_physics_PhysicsJointRotarySpring_getDamping);
@ -10334,7 +10334,7 @@ static int lua_cocos2dx_physics_PhysicsJointRotaryLimit_finalize(lua_State* tolu
int lua_register_cocos2dx_physics_PhysicsJointRotaryLimit(lua_State* tolua_S)
{
tolua_usertype(tolua_S,"cc.PhysicsJointRotaryLimit");
tolua_cclass(tolua_S,"PhysicsJointRotaryLimit","cc.PhysicsJointRotaryLimit","cc.PhysicsJoint",nullptr);
tolua_cclass(tolua_S,"PhysicsJointRotaryLimit","cc.PhysicsJointRotaryLimit","cc.PhysicsJoint",nullptr);
tolua_beginmodule(tolua_S,"PhysicsJointRotaryLimit");
tolua_function(tolua_S,"getMax",lua_cocos2dx_physics_PhysicsJointRotaryLimit_getMax);
@ -10667,7 +10667,7 @@ static int lua_cocos2dx_physics_PhysicsJointRatchet_finalize(lua_State* tolua_S)
int lua_register_cocos2dx_physics_PhysicsJointRatchet(lua_State* tolua_S)
{
tolua_usertype(tolua_S,"cc.PhysicsJointRatchet");
tolua_cclass(tolua_S,"PhysicsJointRatchet","cc.PhysicsJointRatchet","cc.PhysicsJoint",nullptr);
tolua_cclass(tolua_S,"PhysicsJointRatchet","cc.PhysicsJointRatchet","cc.PhysicsJoint",nullptr);
tolua_beginmodule(tolua_S,"PhysicsJointRatchet");
tolua_function(tolua_S,"getAngle",lua_cocos2dx_physics_PhysicsJointRatchet_getAngle);
@ -10912,7 +10912,7 @@ static int lua_cocos2dx_physics_PhysicsJointGear_finalize(lua_State* tolua_S)
int lua_register_cocos2dx_physics_PhysicsJointGear(lua_State* tolua_S)
{
tolua_usertype(tolua_S,"cc.PhysicsJointGear");
tolua_cclass(tolua_S,"PhysicsJointGear","cc.PhysicsJointGear","cc.PhysicsJoint",nullptr);
tolua_cclass(tolua_S,"PhysicsJointGear","cc.PhysicsJointGear","cc.PhysicsJoint",nullptr);
tolua_beginmodule(tolua_S,"PhysicsJointGear");
tolua_function(tolua_S,"setRatio",lua_cocos2dx_physics_PhysicsJointGear_setRatio);
@ -11063,7 +11063,7 @@ static int lua_cocos2dx_physics_PhysicsJointMotor_finalize(lua_State* tolua_S)
int lua_register_cocos2dx_physics_PhysicsJointMotor(lua_State* tolua_S)
{
tolua_usertype(tolua_S,"cc.PhysicsJointMotor");
tolua_cclass(tolua_S,"PhysicsJointMotor","cc.PhysicsJointMotor","cc.PhysicsJoint",nullptr);
tolua_cclass(tolua_S,"PhysicsJointMotor","cc.PhysicsJointMotor","cc.PhysicsJoint",nullptr);
tolua_beginmodule(tolua_S,"PhysicsJointMotor");
tolua_function(tolua_S,"setRate",lua_cocos2dx_physics_PhysicsJointMotor_setRate);

View File

@ -329,7 +329,7 @@ static int lua_cocos2dx_spine_Skeleton_finalize(lua_State* tolua_S)
int lua_register_cocos2dx_spine_Skeleton(lua_State* tolua_S)
{
tolua_usertype(tolua_S,"sp.Skeleton");
tolua_cclass(tolua_S,"Skeleton","sp.Skeleton","cc.Node",nullptr);
tolua_cclass(tolua_S,"Skeleton","sp.Skeleton","cc.Node",nullptr);
tolua_beginmodule(tolua_S,"Skeleton");
tolua_function(tolua_S,"setToSetupPose",lua_cocos2dx_spine_Skeleton_setToSetupPose);
@ -558,7 +558,7 @@ static int lua_cocos2dx_spine_SkeletonAnimation_finalize(lua_State* tolua_S)
int lua_register_cocos2dx_spine_SkeletonAnimation(lua_State* tolua_S)
{
tolua_usertype(tolua_S,"sp.SkeletonAnimation");
tolua_cclass(tolua_S,"SkeletonAnimation","sp.SkeletonAnimation","sp.Skeleton",nullptr);
tolua_cclass(tolua_S,"SkeletonAnimation","sp.SkeletonAnimation","sp.Skeleton",nullptr);
tolua_beginmodule(tolua_S,"SkeletonAnimation");
tolua_function(tolua_S,"setMix",lua_cocos2dx_spine_SkeletonAnimation_setMix);

File diff suppressed because it is too large Load Diff

View File

@ -291,6 +291,185 @@ int register_all_cocos2dx_studio(lua_State* tolua_S);

View File

@ -257,7 +257,7 @@ static int lua_cocos2dx_ui_LayoutParameter_finalize(lua_State* tolua_S)
int lua_register_cocos2dx_ui_LayoutParameter(lua_State* tolua_S)
{
tolua_usertype(tolua_S,"ccui.LayoutParameter");
tolua_cclass(tolua_S,"LayoutParameter","ccui.LayoutParameter","cc.Ref",nullptr);
tolua_cclass(tolua_S,"LayoutParameter","ccui.LayoutParameter","cc.Ref",nullptr);
tolua_beginmodule(tolua_S,"LayoutParameter");
tolua_function(tolua_S,"new",lua_cocos2dx_ui_LayoutParameter_constructor);
@ -437,7 +437,7 @@ static int lua_cocos2dx_ui_LinearLayoutParameter_finalize(lua_State* tolua_S)
int lua_register_cocos2dx_ui_LinearLayoutParameter(lua_State* tolua_S)
{
tolua_usertype(tolua_S,"ccui.LinearLayoutParameter");
tolua_cclass(tolua_S,"LinearLayoutParameter","ccui.LinearLayoutParameter","ccui.LayoutParameter",nullptr);
tolua_cclass(tolua_S,"LinearLayoutParameter","ccui.LinearLayoutParameter","ccui.LayoutParameter",nullptr);
tolua_beginmodule(tolua_S,"LinearLayoutParameter");
tolua_function(tolua_S,"new",lua_cocos2dx_ui_LinearLayoutParameter_constructor);
@ -795,7 +795,7 @@ static int lua_cocos2dx_ui_RelativeLayoutParameter_finalize(lua_State* tolua_S)
int lua_register_cocos2dx_ui_RelativeLayoutParameter(lua_State* tolua_S)
{
tolua_usertype(tolua_S,"ccui.RelativeLayoutParameter");
tolua_cclass(tolua_S,"RelativeLayoutParameter","ccui.RelativeLayoutParameter","ccui.LayoutParameter",nullptr);
tolua_cclass(tolua_S,"RelativeLayoutParameter","ccui.RelativeLayoutParameter","ccui.LayoutParameter",nullptr);
tolua_beginmodule(tolua_S,"RelativeLayoutParameter");
tolua_function(tolua_S,"new",lua_cocos2dx_ui_RelativeLayoutParameter_constructor);
@ -3217,7 +3217,7 @@ static int lua_cocos2dx_ui_Widget_finalize(lua_State* tolua_S)
int lua_register_cocos2dx_ui_Widget(lua_State* tolua_S)
{
tolua_usertype(tolua_S,"ccui.Widget");
tolua_cclass(tolua_S,"Widget","ccui.Widget","cc.ProtectedNode",nullptr);
tolua_cclass(tolua_S,"Widget","ccui.Widget","cc.ProtectedNode",nullptr);
tolua_beginmodule(tolua_S,"Widget");
tolua_function(tolua_S,"new",lua_cocos2dx_ui_Widget_constructor);
@ -4844,7 +4844,7 @@ static int lua_cocos2dx_ui_Layout_finalize(lua_State* tolua_S)
int lua_register_cocos2dx_ui_Layout(lua_State* tolua_S)
{
tolua_usertype(tolua_S,"ccui.Layout");
tolua_cclass(tolua_S,"Layout","ccui.Layout","ccui.Widget",nullptr);
tolua_cclass(tolua_S,"Layout","ccui.Layout","ccui.Widget",nullptr);
tolua_beginmodule(tolua_S,"Layout");
tolua_function(tolua_S,"new",lua_cocos2dx_ui_Layout_constructor);
@ -6138,7 +6138,7 @@ static int lua_cocos2dx_ui_Button_finalize(lua_State* tolua_S)
int lua_register_cocos2dx_ui_Button(lua_State* tolua_S)
{
tolua_usertype(tolua_S,"ccui.Button");
tolua_cclass(tolua_S,"Button","ccui.Button","ccui.Widget",nullptr);
tolua_cclass(tolua_S,"Button","ccui.Button","ccui.Widget",nullptr);
tolua_beginmodule(tolua_S,"Button");
tolua_function(tolua_S,"new",lua_cocos2dx_ui_Button_constructor);
@ -6850,7 +6850,7 @@ static int lua_cocos2dx_ui_CheckBox_finalize(lua_State* tolua_S)
int lua_register_cocos2dx_ui_CheckBox(lua_State* tolua_S)
{
tolua_usertype(tolua_S,"ccui.CheckBox");
tolua_cclass(tolua_S,"CheckBox","ccui.CheckBox","ccui.Widget",nullptr);
tolua_cclass(tolua_S,"CheckBox","ccui.CheckBox","ccui.Widget",nullptr);
tolua_beginmodule(tolua_S,"CheckBox");
tolua_function(tolua_S,"new",lua_cocos2dx_ui_CheckBox_constructor);
@ -7292,7 +7292,7 @@ static int lua_cocos2dx_ui_ImageView_finalize(lua_State* tolua_S)
int lua_register_cocos2dx_ui_ImageView(lua_State* tolua_S)
{
tolua_usertype(tolua_S,"ccui.ImageView");
tolua_cclass(tolua_S,"ImageView","ccui.ImageView","ccui.Widget",nullptr);
tolua_cclass(tolua_S,"ImageView","ccui.ImageView","ccui.Widget",nullptr);
tolua_beginmodule(tolua_S,"ImageView");
tolua_function(tolua_S,"new",lua_cocos2dx_ui_ImageView_constructor);
@ -8384,7 +8384,7 @@ static int lua_cocos2dx_ui_Text_finalize(lua_State* tolua_S)
int lua_register_cocos2dx_ui_Text(lua_State* tolua_S)
{
tolua_usertype(tolua_S,"ccui.Text");
tolua_cclass(tolua_S,"Text","ccui.Text","ccui.Widget",nullptr);
tolua_cclass(tolua_S,"Text","ccui.Text","ccui.Widget",nullptr);
tolua_beginmodule(tolua_S,"Text");
tolua_function(tolua_S,"new",lua_cocos2dx_ui_Text_constructor);
@ -8783,7 +8783,7 @@ static int lua_cocos2dx_ui_TextAtlas_finalize(lua_State* tolua_S)
int lua_register_cocos2dx_ui_TextAtlas(lua_State* tolua_S)
{
tolua_usertype(tolua_S,"ccui.TextAtlas");
tolua_cclass(tolua_S,"TextAtlas","ccui.TextAtlas","ccui.Widget",nullptr);
tolua_cclass(tolua_S,"TextAtlas","ccui.TextAtlas","ccui.Widget",nullptr);
tolua_beginmodule(tolua_S,"TextAtlas");
tolua_function(tolua_S,"new",lua_cocos2dx_ui_TextAtlas_constructor);
@ -9355,7 +9355,7 @@ static int lua_cocos2dx_ui_LoadingBar_finalize(lua_State* tolua_S)
int lua_register_cocos2dx_ui_LoadingBar(lua_State* tolua_S)
{
tolua_usertype(tolua_S,"ccui.LoadingBar");
tolua_cclass(tolua_S,"LoadingBar","ccui.LoadingBar","ccui.Widget",nullptr);
tolua_cclass(tolua_S,"LoadingBar","ccui.LoadingBar","ccui.Widget",nullptr);
tolua_beginmodule(tolua_S,"LoadingBar");
tolua_function(tolua_S,"new",lua_cocos2dx_ui_LoadingBar_constructor);
@ -10966,7 +10966,7 @@ static int lua_cocos2dx_ui_ScrollView_finalize(lua_State* tolua_S)
int lua_register_cocos2dx_ui_ScrollView(lua_State* tolua_S)
{
tolua_usertype(tolua_S,"ccui.ScrollView");
tolua_cclass(tolua_S,"ScrollView","ccui.ScrollView","ccui.Layout",nullptr);
tolua_cclass(tolua_S,"ScrollView","ccui.ScrollView","ccui.Layout",nullptr);
tolua_beginmodule(tolua_S,"ScrollView");
tolua_function(tolua_S,"new",lua_cocos2dx_ui_ScrollView_constructor);
@ -11975,7 +11975,7 @@ static int lua_cocos2dx_ui_ListView_finalize(lua_State* tolua_S)
int lua_register_cocos2dx_ui_ListView(lua_State* tolua_S)
{
tolua_usertype(tolua_S,"ccui.ListView");
tolua_cclass(tolua_S,"ListView","ccui.ListView","ccui.ScrollView",nullptr);
tolua_cclass(tolua_S,"ListView","ccui.ListView","ccui.ScrollView",nullptr);
tolua_beginmodule(tolua_S,"ListView");
tolua_function(tolua_S,"new",lua_cocos2dx_ui_ListView_constructor);
@ -12934,7 +12934,7 @@ static int lua_cocos2dx_ui_Slider_finalize(lua_State* tolua_S)
int lua_register_cocos2dx_ui_Slider(lua_State* tolua_S)
{
tolua_usertype(tolua_S,"ccui.Slider");
tolua_cclass(tolua_S,"Slider","ccui.Slider","ccui.Widget",nullptr);
tolua_cclass(tolua_S,"Slider","ccui.Slider","ccui.Widget",nullptr);
tolua_beginmodule(tolua_S,"Slider");
tolua_function(tolua_S,"new",lua_cocos2dx_ui_Slider_constructor);
@ -14669,7 +14669,7 @@ static int lua_cocos2dx_ui_TextField_finalize(lua_State* tolua_S)
int lua_register_cocos2dx_ui_TextField(lua_State* tolua_S)
{
tolua_usertype(tolua_S,"ccui.TextField");
tolua_cclass(tolua_S,"TextField","ccui.TextField","ccui.Widget",nullptr);
tolua_cclass(tolua_S,"TextField","ccui.TextField","ccui.Widget",nullptr);
tolua_beginmodule(tolua_S,"TextField");
tolua_function(tolua_S,"new",lua_cocos2dx_ui_TextField_constructor);
@ -15019,7 +15019,7 @@ static int lua_cocos2dx_ui_TextBMFont_finalize(lua_State* tolua_S)
int lua_register_cocos2dx_ui_TextBMFont(lua_State* tolua_S)
{
tolua_usertype(tolua_S,"ccui.TextBMFont");
tolua_cclass(tolua_S,"TextBMFont","ccui.TextBMFont","ccui.Widget",nullptr);
tolua_cclass(tolua_S,"TextBMFont","ccui.TextBMFont","ccui.Widget",nullptr);
tolua_beginmodule(tolua_S,"TextBMFont");
tolua_function(tolua_S,"new",lua_cocos2dx_ui_TextBMFont_constructor);
@ -15654,7 +15654,7 @@ static int lua_cocos2dx_ui_PageView_finalize(lua_State* tolua_S)
int lua_register_cocos2dx_ui_PageView(lua_State* tolua_S)
{
tolua_usertype(tolua_S,"ccui.PageView");
tolua_cclass(tolua_S,"PageView","ccui.PageView","ccui.Layout",nullptr);
tolua_cclass(tolua_S,"PageView","ccui.PageView","ccui.Layout",nullptr);
tolua_beginmodule(tolua_S,"PageView");
tolua_function(tolua_S,"new",lua_cocos2dx_ui_PageView_constructor);
@ -15901,7 +15901,7 @@ static int lua_cocos2dx_ui_RichElement_finalize(lua_State* tolua_S)
int lua_register_cocos2dx_ui_RichElement(lua_State* tolua_S)
{
tolua_usertype(tolua_S,"ccui.RichElement");
tolua_cclass(tolua_S,"RichElement","ccui.RichElement","cc.Ref",nullptr);
tolua_cclass(tolua_S,"RichElement","ccui.RichElement","cc.Ref",nullptr);
tolua_beginmodule(tolua_S,"RichElement");
tolua_function(tolua_S,"new",lua_cocos2dx_ui_RichElement_constructor);
@ -16061,7 +16061,7 @@ static int lua_cocos2dx_ui_RichElementText_finalize(lua_State* tolua_S)
int lua_register_cocos2dx_ui_RichElementText(lua_State* tolua_S)
{
tolua_usertype(tolua_S,"ccui.RichElementText");
tolua_cclass(tolua_S,"RichElementText","ccui.RichElementText","ccui.RichElement",nullptr);
tolua_cclass(tolua_S,"RichElementText","ccui.RichElementText","ccui.RichElement",nullptr);
tolua_beginmodule(tolua_S,"RichElementText");
tolua_function(tolua_S,"new",lua_cocos2dx_ui_RichElementText_constructor);
@ -16212,7 +16212,7 @@ static int lua_cocos2dx_ui_RichElementImage_finalize(lua_State* tolua_S)
int lua_register_cocos2dx_ui_RichElementImage(lua_State* tolua_S)
{
tolua_usertype(tolua_S,"ccui.RichElementImage");
tolua_cclass(tolua_S,"RichElementImage","ccui.RichElementImage","ccui.RichElement",nullptr);
tolua_cclass(tolua_S,"RichElementImage","ccui.RichElementImage","ccui.RichElement",nullptr);
tolua_beginmodule(tolua_S,"RichElementImage");
tolua_function(tolua_S,"new",lua_cocos2dx_ui_RichElementImage_constructor);
@ -16363,7 +16363,7 @@ static int lua_cocos2dx_ui_RichElementCustomNode_finalize(lua_State* tolua_S)
int lua_register_cocos2dx_ui_RichElementCustomNode(lua_State* tolua_S)
{
tolua_usertype(tolua_S,"ccui.RichElementCustomNode");
tolua_cclass(tolua_S,"RichElementCustomNode","ccui.RichElementCustomNode","ccui.RichElement",nullptr);
tolua_cclass(tolua_S,"RichElementCustomNode","ccui.RichElementCustomNode","ccui.RichElement",nullptr);
tolua_beginmodule(tolua_S,"RichElementCustomNode");
tolua_function(tolua_S,"new",lua_cocos2dx_ui_RichElementCustomNode_constructor);
@ -16779,7 +16779,7 @@ static int lua_cocos2dx_ui_RichText_finalize(lua_State* tolua_S)
int lua_register_cocos2dx_ui_RichText(lua_State* tolua_S)
{
tolua_usertype(tolua_S,"ccui.RichText");
tolua_cclass(tolua_S,"RichText","ccui.RichText","ccui.Widget",nullptr);
tolua_cclass(tolua_S,"RichText","ccui.RichText","ccui.Widget",nullptr);
tolua_beginmodule(tolua_S,"RichText");
tolua_function(tolua_S,"new",lua_cocos2dx_ui_RichText_constructor);
@ -16886,7 +16886,7 @@ static int lua_cocos2dx_ui_HBox_finalize(lua_State* tolua_S)
int lua_register_cocos2dx_ui_HBox(lua_State* tolua_S)
{
tolua_usertype(tolua_S,"ccui.HBox");
tolua_cclass(tolua_S,"HBox","ccui.HBox","ccui.Layout",nullptr);
tolua_cclass(tolua_S,"HBox","ccui.HBox","ccui.Layout",nullptr);
tolua_beginmodule(tolua_S,"HBox");
tolua_function(tolua_S,"new",lua_cocos2dx_ui_HBox_constructor);
@ -16986,7 +16986,7 @@ static int lua_cocos2dx_ui_VBox_finalize(lua_State* tolua_S)
int lua_register_cocos2dx_ui_VBox(lua_State* tolua_S)
{
tolua_usertype(tolua_S,"ccui.VBox");
tolua_cclass(tolua_S,"VBox","ccui.VBox","ccui.Layout",nullptr);
tolua_cclass(tolua_S,"VBox","ccui.VBox","ccui.Layout",nullptr);
tolua_beginmodule(tolua_S,"VBox");
tolua_function(tolua_S,"new",lua_cocos2dx_ui_VBox_constructor);
@ -17086,7 +17086,7 @@ static int lua_cocos2dx_ui_RelativeBox_finalize(lua_State* tolua_S)
int lua_register_cocos2dx_ui_RelativeBox(lua_State* tolua_S)
{
tolua_usertype(tolua_S,"ccui.RelativeBox");
tolua_cclass(tolua_S,"RelativeBox","ccui.RelativeBox","ccui.Layout",nullptr);
tolua_cclass(tolua_S,"RelativeBox","ccui.RelativeBox","ccui.Layout",nullptr);
tolua_beginmodule(tolua_S,"RelativeBox");
tolua_function(tolua_S,"new",lua_cocos2dx_ui_RelativeBox_constructor);