Merge pull request #11692 from CocosRobot/update_lua_bindings_1430796574

[AUTO]: updating luabinding automatically
This commit is contained in:
minggo 2015-05-05 13:40:49 +08:00
commit e3471e5a7d
254 changed files with 24366 additions and 3804 deletions

View File

@ -4,6 +4,14 @@
-- @extend ActionInterval
-- @parent_module cc
--------------------------------
-- brief Initializes the action.<br>
-- return Return true when the initialization success, otherwise return false.
-- @function [parent=#ActionEase] initWithAction
-- @param self
-- @param #cc.ActionInterval action
-- @return bool#bool ret (return value: bool)
--------------------------------
-- brief Get the pointer of the inner action.<br>
-- return The pointer of the inner action.

View File

@ -11,6 +11,13 @@
-- @param self
-- @return float#float ret (return value: float)
--------------------------------
-- initializes the action
-- @function [parent=#ActionInterval] initWithDuration
-- @param self
-- @param #float d
-- @return bool#bool ret (return value: bool)
--------------------------------
-- Sets the ampliture rate, extension in GridAction<br>
-- param amp The ampliture rate.

View File

@ -11,6 +11,13 @@
-- @param #int actionTag
-- @return ActionTimelineData#ActionTimelineData self (return value: ccs.ActionTimelineData)
--------------------------------
--
-- @function [parent=#ActionTimelineData] init
-- @param self
-- @param #int actionTag
-- @return bool#bool ret (return value: bool)
--------------------------------
--
-- @function [parent=#ActionTimelineData] getActionTag
@ -24,4 +31,10 @@
-- @param #int actionTag
-- @return ActionTimelineData#ActionTimelineData ret (return value: ccs.ActionTimelineData)
--------------------------------
--
-- @function [parent=#ActionTimelineData] ActionTimelineData
-- @param self
-- @return ActionTimelineData#ActionTimelineData self (return value: ccs.ActionTimelineData)
return nil

View File

@ -24,14 +24,13 @@
-- @return ActionTimelineNode#ActionTimelineNode self (return value: ccs.ActionTimelineNode)
--------------------------------
-- @overload self, cc.Node, ccs.ActionTimeline
-- @overload self
-- @function [parent=#ActionTimelineNode] init
--
-- @function [parent=#ActionTimelineNode] init
-- @param self
-- @param #cc.Node root
-- @param #ccs.ActionTimeline action
-- @return bool#bool ret (return value: bool)
--------------------------------
--
-- @function [parent=#ActionTimelineNode] setRoot
@ -47,6 +46,12 @@
-- @param #ccs.ActionTimeline action
-- @return ActionTimelineNode#ActionTimelineNode ret (return value: ccs.ActionTimelineNode)
--------------------------------
--
-- @function [parent=#ActionTimelineNode] init
-- @param self
-- @return bool#bool ret (return value: bool)
--------------------------------
--
-- @function [parent=#ActionTimelineNode] ActionTimelineNode

View File

@ -4,6 +4,21 @@
-- @extend ActionInterval
-- @parent_module cc
--------------------------------
-- brief Initializes the action with the property name (key), and the from and to parameters.<br>
-- param duration The duration of the ActionTween. It's a value in seconds.<br>
-- param key The key of property which should be updated.<br>
-- param from The value of the specified property when the action begin.<br>
-- param to The value of the specified property when the action end.<br>
-- return If the initialization success, return true; otherwise, return false.
-- @function [parent=#ActionTween] initWithDuration
-- @param self
-- @param #float duration
-- @param #string key
-- @param #float from
-- @param #float to
-- @return bool#bool ret (return value: bool)
--------------------------------
-- brief Create and initializes the action with the property name (key), and the from and to parameters.<br>
-- param duration The duration of the ActionTween. It's a value in seconds.<br>

View File

@ -19,4 +19,10 @@
-- @param self
-- @return int#int ret (return value: int)
--------------------------------
--
-- @function [parent=#AmbientLight] AmbientLight
-- @param self
-- @return AmbientLight#AmbientLight self (return value: cc.AmbientLight)
return nil

View File

@ -11,6 +11,13 @@
-- @param self
-- @return Animation#Animation ret (return value: cc.Animation)
--------------------------------
-- initializes the action with an Animation and will restore the original frame when the animation is over
-- @function [parent=#Animate] initWithAnimation
-- @param self
-- @param #cc.Animation animation
-- @return bool#bool ret (return value: bool)
--------------------------------
-- Sets the Animation object to be animated <br>
-- param animation certain animation.
@ -60,4 +67,10 @@
-- @param #float t
-- @return Animate#Animate self (return value: cc.Animate)
--------------------------------
--
-- @function [parent=#Animate] Animate
-- @param self
-- @return Animate#Animate self (return value: cc.Animate)
return nil

View File

@ -24,6 +24,22 @@
-- @param #float weight
-- @return Animate3D#Animate3D self (return value: cc.Animate3D)
--------------------------------
--
-- @function [parent=#Animate3D] removeFromMap
-- @param self
-- @return Animate3D#Animate3D self (return value: cc.Animate3D)
--------------------------------
--
-- @function [parent=#Animate3D] initWithFrames
-- @param self
-- @param #cc.Animation3D animation
-- @param #int startFrame
-- @param #int endFrame
-- @param #float frameRate
-- @return bool#bool ret (return value: bool)
--------------------------------
--
-- @function [parent=#Animate3D] getOriginInterval
@ -37,6 +53,16 @@
-- @param #float speed
-- @return Animate3D#Animate3D self (return value: cc.Animate3D)
--------------------------------
-- @overload self, cc.Animation3D, float, float
-- @overload self, cc.Animation3D
-- @function [parent=#Animate3D] init
-- @param self
-- @param #cc.Animation3D animation
-- @param #float fromTime
-- @param #float duration
-- @return bool#bool ret (return value: bool)
--------------------------------
-- get & set origin interval
-- @function [parent=#Animate3D] setOriginInterval
@ -133,4 +159,10 @@
-- @param #float dt
-- @return Animate3D#Animate3D self (return value: cc.Animate3D)
--------------------------------
--
-- @function [parent=#Animate3D] Animate3D
-- @param self
-- @return Animate3D#Animate3D self (return value: cc.Animate3D)
return nil

View File

@ -40,6 +40,22 @@
-- @param self
-- @return float#float ret (return value: float)
--------------------------------
-- Initializes a Animation with AnimationFrame.<br>
-- since v2.0
-- @function [parent=#Animation] initWithAnimationFrames
-- @param self
-- @param #array_table arrayOfAnimationFrameNames
-- @param #float delayPerUnit
-- @param #unsigned int loops
-- @return bool#bool ret (return value: bool)
--------------------------------
-- Initializes a Animation.
-- @function [parent=#Animation] init
-- @param self
-- @return bool#bool ret (return value: bool)
--------------------------------
-- Sets the array of AnimationFrames. <br>
-- param frames The array of AnimationFrames.
@ -95,6 +111,16 @@
-- @param self
-- @return float#float ret (return value: float)
--------------------------------
-- Initializes a Animation with frames and a delay between frames.<br>
-- since v0.99.5
-- @function [parent=#Animation] initWithSpriteFrames
-- @param self
-- @param #array_table arrayOfSpriteFrameNames
-- @param #float delay
-- @param #unsigned int loops
-- @return bool#bool ret (return value: bool)
--------------------------------
-- Checks whether to restore the original frame when animation finishes. <br>
-- return Restore the original frame when animation finishes.
@ -133,4 +159,10 @@
-- @param #unsigned int loops
-- @return Animation#Animation ret (return value: cc.Animation)
--------------------------------
--
-- @function [parent=#Animation] Animation
-- @param self
-- @return Animation#Animation self (return value: cc.Animation)
return nil

View File

@ -4,6 +4,21 @@
-- @extend Ref
-- @parent_module cc
--------------------------------
-- init Animation3D with file name and animation name
-- @function [parent=#Animation3D] initWithFile
-- @param self
-- @param #string filename
-- @param #string animationName
-- @return bool#bool ret (return value: bool)
--------------------------------
-- init Animation3D from bundle data
-- @function [parent=#Animation3D] init
-- @param self
-- @param #cc.Animation3DData data
-- @return bool#bool ret (return value: bool)
--------------------------------
-- get duration
-- @function [parent=#Animation3D] getDuration
@ -18,4 +33,10 @@
-- @param #string animationName
-- @return Animation3D#Animation3D ret (return value: cc.Animation3D)
--------------------------------
--
-- @function [parent=#Animation3D] Animation3D
-- @param self
-- @return Animation3D#Animation3D self (return value: cc.Animation3D)
return nil

View File

@ -55,6 +55,15 @@
-- @param #map_table userInfo
-- @return AnimationFrame#AnimationFrame self (return value: cc.AnimationFrame)
--------------------------------
-- initializes the animation frame with a spriteframe, number of delay units and a notification user info
-- @function [parent=#AnimationFrame] initWithSpriteFrame
-- @param self
-- @param #cc.SpriteFrame spriteFrame
-- @param #float delayUnits
-- @param #map_table userInfo
-- @return bool#bool ret (return value: bool)
--------------------------------
-- Creates the animation frame with a spriteframe, number of delay units and a notification user info.<br>
-- param spriteFrame The animation frame with a spriteframe.<br>
@ -68,4 +77,10 @@
-- @param #map_table userInfo
-- @return AnimationFrame#AnimationFrame ret (return value: cc.AnimationFrame)
--------------------------------
-- js ctor
-- @function [parent=#AnimationFrame] AnimationFrame
-- @param self
-- @return AnimationFrame#AnimationFrame self (return value: cc.AnimationFrame)
return nil

View File

@ -79,9 +79,8 @@
-- @return BatchNode#BatchNode ret (return value: ccs.BatchNode)
--------------------------------
-- @overload self, string
-- @overload self
-- @overload self, string, ccs.Bone
-- @overload self, string
-- @function [parent=#Armature] init
-- @param self
-- @param #string name
@ -204,6 +203,12 @@
-- @param #float dt
-- @return Armature#Armature self (return value: ccs.Armature)
--------------------------------
-- Init the empty armature
-- @function [parent=#Armature] init
-- @param self
-- @return bool#bool ret (return value: bool)
--------------------------------
--
-- @function [parent=#Armature] getNodeToParentTransform

View File

@ -60,4 +60,12 @@
-- @param #string storagePath
-- @return AssetsManagerEx#AssetsManagerEx ret (return value: cc.AssetsManagerEx)
--------------------------------
--
-- @function [parent=#AssetsManagerEx] AssetsManagerEx
-- @param self
-- @param #string manifestUrl
-- @param #string storagePath
-- @return AssetsManagerEx#AssetsManagerEx self (return value: cc.AssetsManagerEx)
return nil

View File

@ -23,4 +23,10 @@
-- @param self
-- @return AsyncTaskPool#AsyncTaskPool ret (return value: cc.AsyncTaskPool)
--------------------------------
--
-- @function [parent=#AsyncTaskPool] AsyncTaskPool
-- @param self
-- @return AsyncTaskPool#AsyncTaskPool self (return value: cc.AsyncTaskPool)
return nil

View File

@ -11,6 +11,16 @@
-- @param self
-- @return AtlasNode#AtlasNode self (return value: cc.AtlasNode)
--------------------------------
-- Initializes an AtlasNode with an Atlas file the width and height of each item and the quantity of items to render
-- @function [parent=#AtlasNode] initWithTileFile
-- @param self
-- @param #string tile
-- @param #int tileWidth
-- @param #int tileHeight
-- @param #int itemsToRender
-- @return bool#bool ret (return value: bool)
--------------------------------
--
-- @function [parent=#AtlasNode] getTexture
@ -61,6 +71,16 @@
-- @param #cc.Texture2D texture
-- @return AtlasNode#AtlasNode self (return value: cc.AtlasNode)
--------------------------------
-- Initializes an AtlasNode with a texture the width and height of each item measured in points and the quantity of items to render
-- @function [parent=#AtlasNode] initWithTexture
-- @param self
-- @param #cc.Texture2D texture
-- @param #int tileWidth
-- @param #int tileHeight
-- @param #int itemsToRender
-- @return bool#bool ret (return value: bool)
--------------------------------
--
-- @function [parent=#AtlasNode] setQuadsToDraw
@ -124,4 +144,10 @@
-- @param #unsigned char opacity
-- @return AtlasNode#AtlasNode self (return value: cc.AtlasNode)
--------------------------------
--
-- @function [parent=#AtlasNode] AtlasNode
-- @param self
-- @return AtlasNode#AtlasNode self (return value: cc.AtlasNode)
return nil

View File

@ -39,4 +39,10 @@
-- @param self
-- @return mat4_table#mat4_table ret (return value: mat4_table)
--------------------------------
--
-- @function [parent=#AttachNode] AttachNode
-- @param self
-- @return AttachNode#AttachNode self (return value: cc.AttachNode)
return nil

View File

@ -4,12 +4,6 @@
-- @extend Node
-- @parent_module ccs
--------------------------------
-- js NA
-- @function [parent=#BatchNode] init
-- @param self
-- @return bool#bool ret (return value: bool)
--------------------------------
--
-- @function [parent=#BatchNode] create
@ -26,6 +20,12 @@
-- @param #int tag
-- @return BatchNode#BatchNode self (return value: ccs.BatchNode)
--------------------------------
-- js NA
-- @function [parent=#BatchNode] init
-- @param self
-- @return bool#bool ret (return value: bool)
--------------------------------
--
-- @function [parent=#BatchNode] draw

View File

@ -4,6 +4,15 @@
-- @extend ActionInterval
-- @parent_module cc
--------------------------------
-- initializes the action with a duration and a bezier configuration<br>
-- param t in seconds
-- @function [parent=#BezierBy] initWithDuration
-- @param self
-- @param #float t
-- @param #cc._ccBezierConfig c
-- @return bool#bool ret (return value: bool)
--------------------------------
--
-- @function [parent=#BezierBy] startWithTarget
@ -30,4 +39,10 @@
-- @param #float time
-- @return BezierBy#BezierBy self (return value: cc.BezierBy)
--------------------------------
--
-- @function [parent=#BezierBy] BezierBy
-- @param self
-- @return BezierBy#BezierBy self (return value: cc.BezierBy)
return nil

View File

@ -4,6 +4,14 @@
-- @extend BezierBy
-- @parent_module cc
--------------------------------
-- param t In seconds.
-- @function [parent=#BezierTo] initWithDuration
-- @param self
-- @param #float t
-- @param #cc._ccBezierConfig c
-- @return bool#bool ret (return value: bool)
--------------------------------
--
-- @function [parent=#BezierTo] startWithTarget
@ -23,4 +31,10 @@
-- @param self
-- @return BezierTo#BezierTo ret (return value: cc.BezierTo)
--------------------------------
--
-- @function [parent=#BezierTo] BezierTo
-- @param self
-- @return BezierTo#BezierTo self (return value: cc.BezierTo)
return nil

View File

@ -48,4 +48,10 @@
-- @param #unsigned int parentFlags
-- @return BillBoard#BillBoard self (return value: cc.BillBoard)
--------------------------------
--
-- @function [parent=#BillBoard] BillBoard
-- @param self
-- @return BillBoard#BillBoard self (return value: cc.BillBoard)
return nil

View File

@ -4,6 +4,15 @@
-- @extend ActionInterval
-- @parent_module cc
--------------------------------
-- initializes the action <br>
-- param duration in seconds
-- @function [parent=#Blink] initWithDuration
-- @param self
-- @param #float duration
-- @param #int blinks
-- @return bool#bool ret (return value: bool)
--------------------------------
-- Creates the action.<br>
-- param duration Duration time, in seconds.<br>
@ -47,4 +56,10 @@
-- @param #float time
-- @return Blink#Blink self (return value: cc.Blink)
--------------------------------
--
-- @function [parent=#Blink] Blink
-- @param self
-- @return Blink#Blink self (return value: cc.Blink)
return nil

View File

@ -102,13 +102,13 @@
-- @return Bone#Bone self (return value: ccs.Bone)
--------------------------------
-- @overload self, string
-- @overload self
-- @function [parent=#Bone] init
-- Initializes a Bone with the specified name<br>
-- param name Bone's name.
-- @function [parent=#Bone] init
-- @param self
-- @param #string name
-- @return bool#bool ret (return value: bool)
--------------------------------
-- Set parent bone.<br>
-- If parent is NUll, then also remove this bone from armature.<br>
@ -241,10 +241,9 @@
--------------------------------
--
-- @function [parent=#Bone] updateDisplayedColor
-- @function [parent=#Bone] getNodeToWorldTransform
-- @param self
-- @param #color3b_table parentColor
-- @return Bone#Bone self (return value: ccs.Bone)
-- @return mat4_table#mat4_table ret (return value: mat4_table)
--------------------------------
--
@ -253,12 +252,6 @@
-- @param #int zOrder
-- @return Bone#Bone self (return value: ccs.Bone)
--------------------------------
--
-- @function [parent=#Bone] getNodeToWorldTransform
-- @param self
-- @return mat4_table#mat4_table ret (return value: mat4_table)
--------------------------------
--
-- @function [parent=#Bone] update
@ -273,6 +266,19 @@
-- @param #unsigned char parentOpacity
-- @return Bone#Bone self (return value: ccs.Bone)
--------------------------------
-- Initializes an empty Bone with nothing init.
-- @function [parent=#Bone] init
-- @param self
-- @return bool#bool ret (return value: bool)
--------------------------------
--
-- @function [parent=#Bone] updateDisplayedColor
-- @param self
-- @param #color3b_table parentColor
-- @return Bone#Bone self (return value: ccs.Bone)
--------------------------------
-- js ctor
-- @function [parent=#Bone] Bone

View File

@ -4,6 +4,12 @@
-- @extend Widget
-- @parent_module ccui
--------------------------------
--
-- @function [parent=#Button] getNormalTextureSize
-- @param self
-- @return size_table#size_table ret (return value: size_table)
--------------------------------
-- Query the button title content.<br>
-- return Get the button's title content.
@ -85,6 +91,16 @@
-- @param #int texType
-- @return Button#Button self (return value: ccui.Button)
--------------------------------
--
-- @function [parent=#Button] init
-- @param self
-- @param #string normalImage
-- @param #string selectedImage
-- @param #string disableImage
-- @param #int texType
-- @return bool#bool ret (return value: bool)
--------------------------------
-- Change the content of button's title.<br>
-- param text The title in std::string.
@ -233,6 +249,12 @@
-- @param self
-- @return Node#Node ret (return value: cc.Node)
--------------------------------
--
-- @function [parent=#Button] init
-- @param self
-- @return bool#bool ret (return value: bool)
--------------------------------
--
-- @function [parent=#Button] getDescription

View File

@ -44,4 +44,10 @@
-- @param self
-- @return CallFunc#CallFunc ret (return value: cc.CallFunc)
--------------------------------
--
-- @function [parent=#CallFunc] CallFunc
-- @param self
-- @return CallFunc#CallFunc self (return value: cc.CallFunc)
return nil

View File

@ -4,6 +4,23 @@
-- @extend Node
-- @parent_module cc
--------------------------------
-- Set the scene,this method shall not be invoke manually
-- @function [parent=#Camera] setScene
-- @param self
-- @param #cc.Scene scene
-- @return Camera#Camera self (return value: cc.Camera)
--------------------------------
--
-- @function [parent=#Camera] initPerspective
-- @param self
-- @param #float fieldOfView
-- @param #float aspectRatio
-- @param #float nearPlane
-- @param #float farPlane
-- @return bool#bool ret (return value: bool)
--------------------------------
-- Gets the camera's projection matrix.<br>
-- return The camera projection matrix.
@ -37,6 +54,12 @@
-- @param self
-- @return int#int ret (return value: int)
--------------------------------
-- init camera
-- @function [parent=#Camera] initDefault
-- @param self
-- @return bool#bool ret (return value: bool)
--------------------------------
--
-- @function [parent=#Camera] project
@ -75,6 +98,23 @@
-- @param #int flag
-- @return Camera#Camera self (return value: cc.Camera)
--------------------------------
--
-- @function [parent=#Camera] initOrthographic
-- @param self
-- @param #float zoomX
-- @param #float zoomY
-- @param #float nearPlane
-- @param #float farPlane
-- @return bool#bool ret (return value: bool)
--------------------------------
-- set additional matrix for the projection matrix, it multiplys mat to projection matrix when called, used by WP8
-- @function [parent=#Camera] setAdditionalProjection
-- @param self
-- @param #mat4_table mat
-- @return Camera#Camera self (return value: cc.Camera)
--------------------------------
-- get depth, camera with larger depth is drawn on top of camera with smaller depth, the depth of camera with CameraFlag::DEFAULT is 0, user defined camera is -1 by default
-- @function [parent=#Camera] getDepth
@ -134,4 +174,10 @@
-- @param self
-- @return Camera#Camera ret (return value: cc.Camera)
--------------------------------
--
-- @function [parent=#Camera] Camera
-- @param self
-- @return Camera#Camera self (return value: cc.Camera)
return nil

View File

@ -58,6 +58,18 @@
-- @param self
-- @return bool#bool ret (return value: bool)
--------------------------------
--
-- @function [parent=#CheckBox] init
-- @param self
-- @param #string backGround
-- @param #string backGroundSeleted
-- @param #string cross
-- @param #string backGroundDisabled
-- @param #string frontCrossDisabled
-- @param #int texType
-- @return bool#bool ret (return value: bool)
--------------------------------
-- Load all textures for initializing a checkbox.<br>
-- param background The background image name.<br>
@ -139,6 +151,12 @@
-- @param self
-- @return Node#Node ret (return value: cc.Node)
--------------------------------
--
-- @function [parent=#CheckBox] init
-- @param self
-- @return bool#bool ret (return value: bool)
--------------------------------
--
-- @function [parent=#CheckBox] getDescription

View File

@ -43,6 +43,14 @@
-- @param self
-- @return float#float ret (return value: float)
--------------------------------
-- Initializes a clipping node with an other node as its stencil.<br>
-- The stencil node will be retained, and its parent will be set to this clipping node.
-- @function [parent=#ClippingNode] init
-- @param self
-- @param #cc.Node stencil
-- @return bool#bool ret (return value: bool)
--------------------------------
-- The Node to use as a stencil to do the clipping.<br>
-- The stencil node will be retained.<br>
@ -94,4 +102,10 @@
-- @param #unsigned int parentFlags
-- @return ClippingNode#ClippingNode self (return value: cc.ClippingNode)
--------------------------------
-- Initializes a clipping node without a stencil.
-- @function [parent=#ClippingNode] init
-- @param self
-- @return bool#bool ret (return value: bool)
return nil

View File

@ -124,6 +124,12 @@
-- @param #cc.Event event
-- @return Control#Control self (return value: cc.Control)
--------------------------------
--
-- @function [parent=#Control] init
-- @param self
-- @return bool#bool ret (return value: bool)
--------------------------------
--
-- @function [parent=#Control] onTouchEnded
@ -140,4 +146,10 @@
-- @param #cc.Event event
-- @return bool#bool ret (return value: bool)
--------------------------------
-- js ctor
-- @function [parent=#Control] Control
-- @param self
-- @return Control#Control self (return value: cc.Control)
return nil

View File

@ -56,6 +56,13 @@
-- @param self
-- @return vec2_table#vec2_table ret (return value: vec2_table)
--------------------------------
--
-- @function [parent=#ControlButton] initWithBackgroundSprite
-- @param self
-- @param #ccui.Scale9Sprite sprite
-- @return bool#bool ret (return value: bool)
--------------------------------
--
-- @function [parent=#ControlButton] getTitleTTFSizeForState
@ -106,6 +113,13 @@
-- @param #bool var
-- @return ControlButton#ControlButton self (return value: cc.ControlButton)
--------------------------------
--
-- @function [parent=#ControlButton] setBackgroundSprite
-- @param self
-- @param #ccui.Scale9Sprite var
-- @return ControlButton#ControlButton self (return value: cc.ControlButton)
--------------------------------
-- Returns the background sprite used for a state.<br>
-- param state The state that uses the background sprite. Possible values are<br>
@ -121,6 +135,15 @@
-- @param self
-- @return int#int ret (return value: int)
--------------------------------
--
-- @function [parent=#ControlButton] initWithTitleAndFontNameAndFontSize
-- @param self
-- @param #string title
-- @param #string fontName
-- @param #float fontSize
-- @return bool#bool ret (return value: bool)
--------------------------------
-- Sets the font of the label, changes the label to a BMFont if neccessary.<br>
-- param fntFile The name of the font to change to<br>
@ -210,10 +233,10 @@
--------------------------------
--
-- @function [parent=#ControlButton] setBackgroundSprite
-- @function [parent=#ControlButton] getTitleBMFontForState
-- @param self
-- @param #ccui.Scale9Sprite var
-- @return ControlButton#ControlButton self (return value: cc.ControlButton)
-- @param #int state
-- @return string#string ret (return value: string)
--------------------------------
--
@ -259,10 +282,11 @@
--------------------------------
--
-- @function [parent=#ControlButton] getTitleBMFontForState
-- @function [parent=#ControlButton] initWithLabelAndBackgroundSprite
-- @param self
-- @param #int state
-- @return string#string ret (return value: string)
-- @param #cc.Node label
-- @param #ccui.Scale9Sprite backgroundSprite
-- @return bool#bool ret (return value: bool)
--------------------------------
--
@ -358,6 +382,12 @@
-- @param #unsigned char parentOpacity
-- @return ControlButton#ControlButton self (return value: cc.ControlButton)
--------------------------------
--
-- @function [parent=#ControlButton] init
-- @param self
-- @return bool#bool ret (return value: bool)
--------------------------------
--
-- @function [parent=#ControlButton] setHighlighted
@ -379,4 +409,10 @@
-- @param #unsigned char var
-- @return ControlButton#ControlButton self (return value: cc.ControlButton)
--------------------------------
-- js ctor
-- @function [parent=#ControlButton] ControlButton
-- @param self
-- @return ControlButton#ControlButton self (return value: cc.ControlButton)
return nil

View File

@ -31,12 +31,6 @@
-- @param #cc.Sprite var
-- @return ControlColourPicker#ControlColourPicker self (return value: cc.ControlColourPicker)
--------------------------------
--
-- @function [parent=#ControlColourPicker] init
-- @param self
-- @return bool#bool ret (return value: bool)
--------------------------------
--
-- @function [parent=#ControlColourPicker] setcolourPicker
@ -78,6 +72,12 @@
-- @param #bool bEnabled
-- @return ControlColourPicker#ControlColourPicker self (return value: cc.ControlColourPicker)
--------------------------------
--
-- @function [parent=#ControlColourPicker] init
-- @param self
-- @return bool#bool ret (return value: bool)
--------------------------------
--
-- @function [parent=#ControlColourPicker] setColor

View File

@ -32,4 +32,10 @@
-- @param self
-- @return DelayTime#DelayTime ret (return value: cc.DelayTime)
--------------------------------
--
-- @function [parent=#DelayTime] DelayTime
-- @param self
-- @return DelayTime#DelayTime self (return value: cc.DelayTime)
return nil

View File

@ -41,4 +41,10 @@
-- @param self
-- @return int#int ret (return value: int)
--------------------------------
--
-- @function [parent=#DirectionLight] DirectionLight
-- @param self
-- @return DirectionLight#DirectionLight self (return value: cc.DirectionLight)
return nil

View File

@ -225,4 +225,16 @@
-- @param #unsigned int flags
-- @return DrawNode#DrawNode self (return value: cc.DrawNode)
--------------------------------
--
-- @function [parent=#DrawNode] init
-- @param self
-- @return bool#bool ret (return value: bool)
--------------------------------
--
-- @function [parent=#DrawNode] DrawNode
-- @param self
-- @return DrawNode#DrawNode self (return value: cc.DrawNode)
return nil

View File

@ -32,4 +32,10 @@
-- @param self
-- @return ActionEase#ActionEase ret (return value: cc.ActionEase)
--------------------------------
--
-- @function [parent=#EaseBackIn] EaseBackIn
-- @param self
-- @return EaseBackIn#EaseBackIn self (return value: cc.EaseBackIn)
return nil

View File

@ -32,4 +32,10 @@
-- @param self
-- @return EaseBackInOut#EaseBackInOut ret (return value: cc.EaseBackInOut)
--------------------------------
--
-- @function [parent=#EaseBackInOut] EaseBackInOut
-- @param self
-- @return EaseBackInOut#EaseBackInOut self (return value: cc.EaseBackInOut)
return nil

View File

@ -32,4 +32,10 @@
-- @param self
-- @return ActionEase#ActionEase ret (return value: cc.ActionEase)
--------------------------------
--
-- @function [parent=#EaseBackOut] EaseBackOut
-- @param self
-- @return EaseBackOut#EaseBackOut self (return value: cc.EaseBackOut)
return nil

View File

@ -42,4 +42,10 @@
-- @param self
-- @return EaseBezierAction#EaseBezierAction ret (return value: cc.EaseBezierAction)
--------------------------------
--
-- @function [parent=#EaseBezierAction] EaseBezierAction
-- @param self
-- @return EaseBezierAction#EaseBezierAction self (return value: cc.EaseBezierAction)
return nil

View File

@ -32,4 +32,10 @@
-- @param self
-- @return EaseBounce#EaseBounce ret (return value: cc.EaseBounce)
--------------------------------
--
-- @function [parent=#EaseBounceIn] EaseBounceIn
-- @param self
-- @return EaseBounceIn#EaseBounceIn self (return value: cc.EaseBounceIn)
return nil

View File

@ -32,4 +32,10 @@
-- @param self
-- @return EaseBounceInOut#EaseBounceInOut ret (return value: cc.EaseBounceInOut)
--------------------------------
--
-- @function [parent=#EaseBounceInOut] EaseBounceInOut
-- @param self
-- @return EaseBounceInOut#EaseBounceInOut self (return value: cc.EaseBounceInOut)
return nil

View File

@ -32,4 +32,10 @@
-- @param self
-- @return EaseBounce#EaseBounce ret (return value: cc.EaseBounce)
--------------------------------
--
-- @function [parent=#EaseBounceOut] EaseBounceOut
-- @param self
-- @return EaseBounceOut#EaseBounceOut self (return value: cc.EaseBounceOut)
return nil

View File

@ -32,4 +32,10 @@
-- @param self
-- @return EaseCircleActionIn#EaseCircleActionIn ret (return value: cc.EaseCircleActionIn)
--------------------------------
--
-- @function [parent=#EaseCircleActionIn] EaseCircleActionIn
-- @param self
-- @return EaseCircleActionIn#EaseCircleActionIn self (return value: cc.EaseCircleActionIn)
return nil

View File

@ -32,4 +32,10 @@
-- @param self
-- @return EaseCircleActionInOut#EaseCircleActionInOut ret (return value: cc.EaseCircleActionInOut)
--------------------------------
--
-- @function [parent=#EaseCircleActionInOut] EaseCircleActionInOut
-- @param self
-- @return EaseCircleActionInOut#EaseCircleActionInOut self (return value: cc.EaseCircleActionInOut)
return nil

View File

@ -32,4 +32,10 @@
-- @param self
-- @return EaseCircleActionOut#EaseCircleActionOut ret (return value: cc.EaseCircleActionOut)
--------------------------------
--
-- @function [parent=#EaseCircleActionOut] EaseCircleActionOut
-- @param self
-- @return EaseCircleActionOut#EaseCircleActionOut self (return value: cc.EaseCircleActionOut)
return nil

View File

@ -32,4 +32,10 @@
-- @param self
-- @return EaseCubicActionIn#EaseCubicActionIn ret (return value: cc.EaseCubicActionIn)
--------------------------------
--
-- @function [parent=#EaseCubicActionIn] EaseCubicActionIn
-- @param self
-- @return EaseCubicActionIn#EaseCubicActionIn self (return value: cc.EaseCubicActionIn)
return nil

View File

@ -32,4 +32,10 @@
-- @param self
-- @return EaseCubicActionInOut#EaseCubicActionInOut ret (return value: cc.EaseCubicActionInOut)
--------------------------------
--
-- @function [parent=#EaseCubicActionInOut] EaseCubicActionInOut
-- @param self
-- @return EaseCubicActionInOut#EaseCubicActionInOut self (return value: cc.EaseCubicActionInOut)
return nil

View File

@ -32,4 +32,10 @@
-- @param self
-- @return EaseCubicActionOut#EaseCubicActionOut ret (return value: cc.EaseCubicActionOut)
--------------------------------
--
-- @function [parent=#EaseCubicActionOut] EaseCubicActionOut
-- @param self
-- @return EaseCubicActionOut#EaseCubicActionOut self (return value: cc.EaseCubicActionOut)
return nil

View File

@ -12,6 +12,17 @@
-- @param #float fPeriod
-- @return EaseElastic#EaseElastic self (return value: cc.EaseElastic)
--------------------------------
-- brief Initializes the action with the inner action and the period in radians.<br>
-- param action The pointer of the inner action.<br>
-- param period Period of the wave in radians. Default is 0.3.<br>
-- return Return true when the initialization success, otherwise return false.
-- @function [parent=#EaseElastic] initWithAction
-- @param self
-- @param #cc.ActionInterval action
-- @param #float period
-- @return bool#bool ret (return value: bool)
--------------------------------
-- brief Get period of the wave in radians. Default value is 0.3.<br>
-- return Return the period of the wave in radians.

View File

@ -32,4 +32,10 @@
-- @param self
-- @return EaseElastic#EaseElastic ret (return value: cc.EaseElastic)
--------------------------------
--
-- @function [parent=#EaseElasticIn] EaseElasticIn
-- @param self
-- @return EaseElasticIn#EaseElasticIn self (return value: cc.EaseElasticIn)
return nil

View File

@ -32,4 +32,10 @@
-- @param self
-- @return EaseElasticInOut#EaseElasticInOut ret (return value: cc.EaseElasticInOut)
--------------------------------
--
-- @function [parent=#EaseElasticInOut] EaseElasticInOut
-- @param self
-- @return EaseElasticInOut#EaseElasticInOut self (return value: cc.EaseElasticInOut)
return nil

View File

@ -32,4 +32,10 @@
-- @param self
-- @return EaseElastic#EaseElastic ret (return value: cc.EaseElastic)
--------------------------------
--
-- @function [parent=#EaseElasticOut] EaseElasticOut
-- @param self
-- @return EaseElasticOut#EaseElasticOut self (return value: cc.EaseElasticOut)
return nil

View File

@ -32,4 +32,10 @@
-- @param self
-- @return ActionEase#ActionEase ret (return value: cc.ActionEase)
--------------------------------
--
-- @function [parent=#EaseExponentialIn] EaseExponentialIn
-- @param self
-- @return EaseExponentialIn#EaseExponentialIn self (return value: cc.EaseExponentialIn)
return nil

View File

@ -32,4 +32,10 @@
-- @param self
-- @return EaseExponentialInOut#EaseExponentialInOut ret (return value: cc.EaseExponentialInOut)
--------------------------------
--
-- @function [parent=#EaseExponentialInOut] EaseExponentialInOut
-- @param self
-- @return EaseExponentialInOut#EaseExponentialInOut self (return value: cc.EaseExponentialInOut)
return nil

View File

@ -32,4 +32,10 @@
-- @param self
-- @return ActionEase#ActionEase ret (return value: cc.ActionEase)
--------------------------------
--
-- @function [parent=#EaseExponentialOut] EaseExponentialOut
-- @param self
-- @return EaseExponentialOut#EaseExponentialOut self (return value: cc.EaseExponentialOut)
return nil

View File

@ -34,4 +34,10 @@
-- @param self
-- @return EaseIn#EaseIn ret (return value: cc.EaseIn)
--------------------------------
--
-- @function [parent=#EaseIn] EaseIn
-- @param self
-- @return EaseIn#EaseIn self (return value: cc.EaseIn)
return nil

View File

@ -34,4 +34,10 @@
-- @param self
-- @return EaseInOut#EaseInOut ret (return value: cc.EaseInOut)
--------------------------------
--
-- @function [parent=#EaseInOut] EaseInOut
-- @param self
-- @return EaseInOut#EaseInOut self (return value: cc.EaseInOut)
return nil

View File

@ -34,4 +34,10 @@
-- @param self
-- @return EaseOut#EaseOut ret (return value: cc.EaseOut)
--------------------------------
--
-- @function [parent=#EaseOut] EaseOut
-- @param self
-- @return EaseOut#EaseOut self (return value: cc.EaseOut)
return nil

View File

@ -32,4 +32,10 @@
-- @param self
-- @return EaseQuadraticActionIn#EaseQuadraticActionIn ret (return value: cc.EaseQuadraticActionIn)
--------------------------------
--
-- @function [parent=#EaseQuadraticActionIn] EaseQuadraticActionIn
-- @param self
-- @return EaseQuadraticActionIn#EaseQuadraticActionIn self (return value: cc.EaseQuadraticActionIn)
return nil

View File

@ -32,4 +32,10 @@
-- @param self
-- @return EaseQuadraticActionInOut#EaseQuadraticActionInOut ret (return value: cc.EaseQuadraticActionInOut)
--------------------------------
--
-- @function [parent=#EaseQuadraticActionInOut] EaseQuadraticActionInOut
-- @param self
-- @return EaseQuadraticActionInOut#EaseQuadraticActionInOut self (return value: cc.EaseQuadraticActionInOut)
return nil

View File

@ -32,4 +32,10 @@
-- @param self
-- @return EaseQuadraticActionOut#EaseQuadraticActionOut ret (return value: cc.EaseQuadraticActionOut)
--------------------------------
--
-- @function [parent=#EaseQuadraticActionOut] EaseQuadraticActionOut
-- @param self
-- @return EaseQuadraticActionOut#EaseQuadraticActionOut self (return value: cc.EaseQuadraticActionOut)
return nil

View File

@ -32,4 +32,10 @@
-- @param self
-- @return EaseQuarticActionIn#EaseQuarticActionIn ret (return value: cc.EaseQuarticActionIn)
--------------------------------
--
-- @function [parent=#EaseQuarticActionIn] EaseQuarticActionIn
-- @param self
-- @return EaseQuarticActionIn#EaseQuarticActionIn self (return value: cc.EaseQuarticActionIn)
return nil

View File

@ -32,4 +32,10 @@
-- @param self
-- @return EaseQuarticActionInOut#EaseQuarticActionInOut ret (return value: cc.EaseQuarticActionInOut)
--------------------------------
--
-- @function [parent=#EaseQuarticActionInOut] EaseQuarticActionInOut
-- @param self
-- @return EaseQuarticActionInOut#EaseQuarticActionInOut self (return value: cc.EaseQuarticActionInOut)
return nil

View File

@ -32,4 +32,10 @@
-- @param self
-- @return EaseQuarticActionOut#EaseQuarticActionOut ret (return value: cc.EaseQuarticActionOut)
--------------------------------
--
-- @function [parent=#EaseQuarticActionOut] EaseQuarticActionOut
-- @param self
-- @return EaseQuarticActionOut#EaseQuarticActionOut self (return value: cc.EaseQuarticActionOut)
return nil

View File

@ -32,4 +32,10 @@
-- @param self
-- @return EaseQuinticActionIn#EaseQuinticActionIn ret (return value: cc.EaseQuinticActionIn)
--------------------------------
--
-- @function [parent=#EaseQuinticActionIn] EaseQuinticActionIn
-- @param self
-- @return EaseQuinticActionIn#EaseQuinticActionIn self (return value: cc.EaseQuinticActionIn)
return nil

View File

@ -32,4 +32,10 @@
-- @param self
-- @return EaseQuinticActionInOut#EaseQuinticActionInOut ret (return value: cc.EaseQuinticActionInOut)
--------------------------------
--
-- @function [parent=#EaseQuinticActionInOut] EaseQuinticActionInOut
-- @param self
-- @return EaseQuinticActionInOut#EaseQuinticActionInOut self (return value: cc.EaseQuinticActionInOut)
return nil

View File

@ -32,4 +32,10 @@
-- @param self
-- @return EaseQuinticActionOut#EaseQuinticActionOut ret (return value: cc.EaseQuinticActionOut)
--------------------------------
--
-- @function [parent=#EaseQuinticActionOut] EaseQuinticActionOut
-- @param self
-- @return EaseQuinticActionOut#EaseQuinticActionOut self (return value: cc.EaseQuinticActionOut)
return nil

View File

@ -12,6 +12,17 @@
-- @param #float rate
-- @return EaseRateAction#EaseRateAction self (return value: cc.EaseRateAction)
--------------------------------
-- brief Initializes the action with the inner action and the rate parameter.<br>
-- param pAction The pointer of the inner action.<br>
-- param fRate The value of the rate parameter.<br>
-- return Return true when the initialization success, otherwise return false.
-- @function [parent=#EaseRateAction] initWithAction
-- @param self
-- @param #cc.ActionInterval pAction
-- @param #float fRate
-- @return bool#bool ret (return value: bool)
--------------------------------
-- brief Get the rate value of the ease rate action.<br>
-- return Return the rate value of the ease rate action.

View File

@ -32,4 +32,10 @@
-- @param self
-- @return ActionEase#ActionEase ret (return value: cc.ActionEase)
--------------------------------
--
-- @function [parent=#EaseSineIn] EaseSineIn
-- @param self
-- @return EaseSineIn#EaseSineIn self (return value: cc.EaseSineIn)
return nil

View File

@ -32,4 +32,10 @@
-- @param self
-- @return EaseSineInOut#EaseSineInOut ret (return value: cc.EaseSineInOut)
--------------------------------
--
-- @function [parent=#EaseSineInOut] EaseSineInOut
-- @param self
-- @return EaseSineInOut#EaseSineInOut self (return value: cc.EaseSineInOut)
return nil

View File

@ -32,4 +32,10 @@
-- @param self
-- @return ActionEase#ActionEase ret (return value: cc.ActionEase)
--------------------------------
--
-- @function [parent=#EaseSineOut] EaseSineOut
-- @param self
-- @return EaseSineOut#EaseSineOut self (return value: cc.EaseSineOut)
return nil

View File

@ -33,4 +33,11 @@
-- @param self
-- @return Event#Event self (return value: cc.Event)
--------------------------------
-- Constructor
-- @function [parent=#Event] Event
-- @param self
-- @param #int type
-- @return Event#Event self (return value: cc.Event)
return nil

View File

@ -52,4 +52,19 @@
-- @param self
-- @return float#float ret (return value: float)
--------------------------------
-- Constructor
-- @function [parent=#EventAssetsManagerEx] EventAssetsManagerEx
-- @param self
-- @param #string eventName
-- @param #cc.AssetsManagerEx manager
-- @param #int code
-- @param #float percent
-- @param #float percentByFile
-- @param #string assetId
-- @param #string message
-- @param #int curle_code
-- @param #int curlm_code
-- @return EventAssetsManagerEx#EventAssetsManagerEx self (return value: cc.EventAssetsManagerEx)
return nil

View File

@ -16,12 +16,6 @@
-- @param #bool enabled
-- @return EventListener#EventListener self (return value: cc.EventListener)
--------------------------------
-- Clones the listener, its subclasses have to override this method.
-- @function [parent=#EventListener] clone
-- @param self
-- @return EventListener#EventListener ret (return value: cc.EventListener)
--------------------------------
-- Checks whether the listener is enabled.<br>
-- return True if the listenrt is enabled.
@ -29,6 +23,12 @@
-- @param self
-- @return bool#bool ret (return value: bool)
--------------------------------
-- Clones the listener, its subclasses have to override this method.
-- @function [parent=#EventListener] clone
-- @param self
-- @return EventListener#EventListener ret (return value: cc.EventListener)
--------------------------------
-- Checks whether the listener is available.<br>
-- return True if the listener is available.

View File

@ -4,6 +4,13 @@
-- @extend EventListener
-- @parent_module cc
--------------------------------
--
-- @function [parent=#EventListenerAcceleration] init
-- @param self
-- @param #function callback
-- @return bool#bool ret (return value: bool)
--------------------------------
-- / Overrides
-- @function [parent=#EventListenerAcceleration] clone
@ -16,4 +23,10 @@
-- @param self
-- @return bool#bool ret (return value: bool)
--------------------------------
--
-- @function [parent=#EventListenerAcceleration] EventListenerAcceleration
-- @param self
-- @return EventListenerAcceleration#EventListenerAcceleration self (return value: cc.EventListenerAcceleration)
return nil

View File

@ -4,6 +4,14 @@
-- @extend EventListenerCustom
-- @parent_module cc
--------------------------------
-- Initializes event with type and callback function
-- @function [parent=#EventListenerAssetsManagerEx] init
-- @param self
-- @param #cc.AssetsManagerEx AssetsManagerEx
-- @param #function callback
-- @return bool#bool ret (return value: bool)
--------------------------------
--
-- @function [parent=#EventListenerAssetsManagerEx] clone
@ -16,4 +24,10 @@
-- @param self
-- @return bool#bool ret (return value: bool)
--------------------------------
-- Constructor
-- @function [parent=#EventListenerAssetsManagerEx] EventListenerAssetsManagerEx
-- @param self
-- @return EventListenerAssetsManagerEx#EventListenerAssetsManagerEx self (return value: cc.EventListenerAssetsManagerEx)
return nil

View File

@ -16,4 +16,10 @@
-- @param self
-- @return bool#bool ret (return value: bool)
--------------------------------
-- Constructor
-- @function [parent=#EventListenerCustom] EventListenerCustom
-- @param self
-- @return EventListenerCustom#EventListenerCustom self (return value: cc.EventListenerCustom)
return nil

View File

@ -4,6 +4,12 @@
-- @extend EventListener
-- @parent_module cc
--------------------------------
--
-- @function [parent=#EventListenerFocus] init
-- @param self
-- @return bool#bool ret (return value: bool)
--------------------------------
-- / Overrides
-- @function [parent=#EventListenerFocus] clone
@ -16,4 +22,10 @@
-- @param self
-- @return bool#bool ret (return value: bool)
--------------------------------
--
-- @function [parent=#EventListenerFocus] EventListenerFocus
-- @param self
-- @return EventListenerFocus#EventListenerFocus self (return value: cc.EventListenerFocus)
return nil

View File

@ -4,6 +4,12 @@
-- @extend EventListener
-- @parent_module cc
--------------------------------
--
-- @function [parent=#EventListenerKeyboard] init
-- @param self
-- @return bool#bool ret (return value: bool)
--------------------------------
-- / Overrides
-- @function [parent=#EventListenerKeyboard] clone
@ -16,4 +22,10 @@
-- @param self
-- @return bool#bool ret (return value: bool)
--------------------------------
--
-- @function [parent=#EventListenerKeyboard] EventListenerKeyboard
-- @param self
-- @return EventListenerKeyboard#EventListenerKeyboard self (return value: cc.EventListenerKeyboard)
return nil

View File

@ -4,6 +4,12 @@
-- @extend EventListener
-- @parent_module cc
--------------------------------
--
-- @function [parent=#EventListenerMouse] init
-- @param self
-- @return bool#bool ret (return value: bool)
--------------------------------
-- / Overrides
-- @function [parent=#EventListenerMouse] clone
@ -16,4 +22,10 @@
-- @param self
-- @return bool#bool ret (return value: bool)
--------------------------------
--
-- @function [parent=#EventListenerMouse] EventListenerMouse
-- @param self
-- @return EventListenerMouse#EventListenerMouse self (return value: cc.EventListenerMouse)
return nil

View File

@ -4,6 +4,12 @@
-- @extend EventListener
-- @parent_module cc
--------------------------------
--
-- @function [parent=#EventListenerTouchAllAtOnce] init
-- @param self
-- @return bool#bool ret (return value: bool)
--------------------------------
-- / Overrides
-- @function [parent=#EventListenerTouchAllAtOnce] clone
@ -16,4 +22,10 @@
-- @param self
-- @return bool#bool ret (return value: bool)
--------------------------------
--
-- @function [parent=#EventListenerTouchAllAtOnce] EventListenerTouchAllAtOnce
-- @param self
-- @return EventListenerTouchAllAtOnce#EventListenerTouchAllAtOnce self (return value: cc.EventListenerTouchAllAtOnce)
return nil

View File

@ -19,6 +19,12 @@
-- @param #bool needSwallow
-- @return EventListenerTouchOneByOne#EventListenerTouchOneByOne self (return value: cc.EventListenerTouchOneByOne)
--------------------------------
--
-- @function [parent=#EventListenerTouchOneByOne] init
-- @param self
-- @return bool#bool ret (return value: bool)
--------------------------------
-- / Overrides
-- @function [parent=#EventListenerTouchOneByOne] clone
@ -31,4 +37,10 @@
-- @param self
-- @return bool#bool ret (return value: bool)
--------------------------------
--
-- @function [parent=#EventListenerTouchOneByOne] EventListenerTouchOneByOne
-- @param self
-- @return EventListenerTouchOneByOne#EventListenerTouchOneByOne self (return value: cc.EventListenerTouchOneByOne)
return nil

View File

@ -39,4 +39,10 @@
-- @param self
-- @return FadeTo#FadeTo ret (return value: cc.FadeTo)
--------------------------------
--
-- @function [parent=#FadeIn] FadeIn
-- @param self
-- @return FadeIn#FadeIn self (return value: cc.FadeIn)
return nil

View File

@ -38,4 +38,10 @@
-- @param self
-- @return FadeTo#FadeTo ret (return value: cc.FadeTo)
--------------------------------
--
-- @function [parent=#FadeOut] FadeOut
-- @param self
-- @return FadeOut#FadeOut self (return value: cc.FadeOut)
return nil

View File

@ -29,4 +29,10 @@
-- @param #float time
-- @return float#float ret (return value: float)
--------------------------------
--
-- @function [parent=#FadeOutBLTiles] FadeOutBLTiles
-- @param self
-- @return FadeOutBLTiles#FadeOutBLTiles self (return value: cc.FadeOutBLTiles)
return nil

View File

@ -29,4 +29,10 @@
-- @param #float time
-- @return float#float ret (return value: float)
--------------------------------
--
-- @function [parent=#FadeOutDownTiles] FadeOutDownTiles
-- @param self
-- @return FadeOutDownTiles#FadeOutDownTiles self (return value: cc.FadeOutDownTiles)
return nil

View File

@ -65,4 +65,10 @@
-- @param #float time
-- @return FadeOutTRTiles#FadeOutTRTiles self (return value: cc.FadeOutTRTiles)
--------------------------------
--
-- @function [parent=#FadeOutTRTiles] FadeOutTRTiles
-- @param self
-- @return FadeOutTRTiles#FadeOutTRTiles self (return value: cc.FadeOutTRTiles)
return nil

View File

@ -37,4 +37,10 @@
-- @param #float time
-- @return float#float ret (return value: float)
--------------------------------
--
-- @function [parent=#FadeOutUpTiles] FadeOutUpTiles
-- @param self
-- @return FadeOutUpTiles#FadeOutUpTiles self (return value: cc.FadeOutUpTiles)
return nil

View File

@ -4,6 +4,15 @@
-- @extend ActionInterval
-- @parent_module cc
--------------------------------
-- initializes the action with duration and opacity <br>
-- param duration in seconds
-- @function [parent=#FadeTo] initWithDuration
-- @param self
-- @param #float duration
-- @param #unsigned char opacity
-- @return bool#bool ret (return value: bool)
--------------------------------
-- Creates an action with duration and opacity.<br>
-- param duration Duration time, in seconds.<br>
@ -41,4 +50,10 @@
-- @param #float time
-- @return FadeTo#FadeTo self (return value: cc.FadeTo)
--------------------------------
--
-- @function [parent=#FadeTo] FadeTo
-- @param self
-- @return FadeTo#FadeTo self (return value: cc.FadeTo)
return nil

View File

@ -4,6 +4,13 @@
-- @extend ActionInstant
-- @parent_module cc
--------------------------------
-- init the action
-- @function [parent=#FlipX] initWithFlipX
-- @param self
-- @param #bool x
-- @return bool#bool ret (return value: bool)
--------------------------------
-- Create the action.<br>
-- param x Flips the sprite horizontally if true.<br>
@ -32,4 +39,10 @@
-- @param self
-- @return FlipX#FlipX ret (return value: cc.FlipX)
--------------------------------
--
-- @function [parent=#FlipX] FlipX
-- @param self
-- @return FlipX#FlipX self (return value: cc.FlipX)
return nil

View File

@ -4,6 +4,26 @@
-- @extend Grid3DAction
-- @parent_module cc
--------------------------------
-- brief Initializes an action with duration and grid size.<br>
-- param gridSize Specify the grid size of the FlipX3D action.<br>
-- param duration Specify the duration of the FlipX3D action. It's a value in seconds.<br>
-- return If the initialization success, return true; otherwise, return false.
-- @function [parent=#FlipX3D] initWithSize
-- @param self
-- @param #size_table gridSize
-- @param #float duration
-- @return bool#bool ret (return value: bool)
--------------------------------
-- brief Initializes an action with duration.<br>
-- param duration Specify the duration of the FlipX3D action. It's a value in seconds.<br>
-- return If the initialization success, return true; otherwise, return false.
-- @function [parent=#FlipX3D] initWithDuration
-- @param self
-- @param #float duration
-- @return bool#bool ret (return value: bool)
--------------------------------
-- brief Create the action with duration.<br>
-- param duration Specify the duration of the FilpX3D action. It's a value in seconds.<br>
@ -26,4 +46,10 @@
-- @param #float time
-- @return FlipX3D#FlipX3D self (return value: cc.FlipX3D)
--------------------------------
--
-- @function [parent=#FlipX3D] FlipX3D
-- @param self
-- @return FlipX3D#FlipX3D self (return value: cc.FlipX3D)
return nil

View File

@ -4,6 +4,13 @@
-- @extend ActionInstant
-- @parent_module cc
--------------------------------
-- init the action
-- @function [parent=#FlipY] initWithFlipY
-- @param self
-- @param #bool y
-- @return bool#bool ret (return value: bool)
--------------------------------
-- Create the action.<br>
-- param y Flips the sprite vertically if true.<br>
@ -32,4 +39,10 @@
-- @param self
-- @return FlipY#FlipY ret (return value: cc.FlipY)
--------------------------------
--
-- @function [parent=#FlipY] FlipY
-- @param self
-- @return FlipY#FlipY self (return value: cc.FlipY)
return nil

View File

@ -26,4 +26,10 @@
-- @param #float time
-- @return FlipY3D#FlipY3D self (return value: cc.FlipY3D)
--------------------------------
--
-- @function [parent=#FlipY3D] FlipY3D
-- @param self
-- @return FlipY3D#FlipY3D self (return value: cc.FlipY3D)
return nil

View File

@ -12,6 +12,17 @@
-- @param #bool value
-- @return Follow#Follow self (return value: cc.Follow)
--------------------------------
-- Initializes the action with a set boundary or with no boundary.<br>
-- param followedNode The node to be followed.<br>
-- param rect The boundary. If \p rect is equal to Rect::ZERO, it'll work<br>
-- with no boundary.
-- @function [parent=#Follow] initWithTarget
-- @param self
-- @param #cc.Node followedNode
-- @param #rect_table rect
-- @return bool#bool ret (return value: bool)
--------------------------------
-- Return boundarySet.<br>
-- return Return boundarySet.
@ -62,4 +73,10 @@
-- @param self
-- @return bool#bool ret (return value: bool)
--------------------------------
-- js ctor
-- @function [parent=#Follow] Follow
-- @param self
-- @return Follow#Follow self (return value: cc.Follow)
return nil

View File

@ -11,6 +11,17 @@
-- @param self
-- @return GridBase#GridBase ret (return value: cc.GridBase)
--------------------------------
-- brief Initializes the action with size and duration.<br>
-- param duration The duration of the GridAction. It's a value in seconds.<br>
-- param gridSize The size of the GridAction should be.<br>
-- return Return true when the initialization success, otherwise return false.
-- @function [parent=#GridAction] initWithDuration
-- @param self
-- @param #float duration
-- @param #size_table gridSize
-- @return bool#bool ret (return value: bool)
--------------------------------
--
-- @function [parent=#GridAction] startWithTarget

View File

@ -4,6 +4,13 @@
-- @extend Layout
-- @parent_module ccui
--------------------------------
--
-- @function [parent=#HBox] initWithSize
-- @param self
-- @param #size_table size
-- @return bool#bool ret (return value: bool)
--------------------------------
-- @overload self, size_table
-- @overload self
@ -12,6 +19,12 @@
-- @param #size_table size
-- @return HBox#HBox ret (return value: ccui.HBox)
--------------------------------
--
-- @function [parent=#HBox] init
-- @param self
-- @return bool#bool ret (return value: bool)
--------------------------------
-- Default constructor<br>
-- js ctor<br>

View File

@ -30,4 +30,10 @@
-- @param self
-- @return ActionInstant#ActionInstant ret (return value: cc.ActionInstant)
--------------------------------
--
-- @function [parent=#Hide] Hide
-- @param self
-- @return Hide#Hide self (return value: cc.Hide)
return nil

View File

@ -14,6 +14,14 @@
-- @param #int texType
-- @return ImageView#ImageView self (return value: ccui.ImageView)
--------------------------------
--
-- @function [parent=#ImageView] init
-- @param self
-- @param #string imageFileName
-- @param #int texType
-- @return bool#bool ret (return value: bool)
--------------------------------
-- Enable scale9 renderer.<br>
-- param enabled Set to true will use scale9 renderer, false otherwise.
@ -75,6 +83,12 @@
-- @param self
-- @return Node#Node ret (return value: cc.Node)
--------------------------------
--
-- @function [parent=#ImageView] init
-- @param self
-- @return bool#bool ret (return value: bool)
--------------------------------
--
-- @function [parent=#ImageView] getDescription

View File

@ -4,6 +4,17 @@
-- @extend ActionInterval
-- @parent_module cc
--------------------------------
-- initializes the action<br>
-- param duration in seconds
-- @function [parent=#JumpBy] initWithDuration
-- @param self
-- @param #float duration
-- @param #vec2_table position
-- @param #float height
-- @param #int jumps
-- @return bool#bool ret (return value: bool)
--------------------------------
-- Creates the action.<br>
-- param duration Duration time, in seconds.<br>
@ -45,4 +56,10 @@
-- @param #float time
-- @return JumpBy#JumpBy self (return value: cc.JumpBy)
--------------------------------
--
-- @function [parent=#JumpBy] JumpBy
-- @param self
-- @return JumpBy#JumpBy self (return value: cc.JumpBy)
return nil

View File

@ -4,6 +4,36 @@
-- @extend TiledGrid3DAction
-- @parent_module cc
--------------------------------
-- brief Set the ampliture rate of the effect.<br>
-- param amplitudeRate The value of amplitude rate will be set.
-- @function [parent=#JumpTiles3D] setAmplitudeRate
-- @param self
-- @param #float amplitudeRate
-- @return JumpTiles3D#JumpTiles3D self (return value: cc.JumpTiles3D)
--------------------------------
-- brief Initializes the action with the number of jumps, the sin amplitude, the grid size and the duration.<br>
-- param duration Specify the duration of the JumpTiles3D action. It's a value in seconds.<br>
-- param gridSize Specify the size of the grid.<br>
-- param numberOfJumps Specify the jump tiles count.<br>
-- param amplitude Specify the amplitude of the JumpTiles3D action.<br>
-- return If the initialization success, return true; otherwise, return false.
-- @function [parent=#JumpTiles3D] initWithDuration
-- @param self
-- @param #float duration
-- @param #size_table gridSize
-- @param #unsigned int numberOfJumps
-- @param #float amplitude
-- @return bool#bool ret (return value: bool)
--------------------------------
-- brief Get the amplitude of the effect.<br>
-- return Return the amplitude of the effect.
-- @function [parent=#JumpTiles3D] getAmplitude
-- @param self
-- @return float#float ret (return value: float)
--------------------------------
-- brief Get the amplitude rate of the effect.<br>
-- return Return the amplitude rate of the effect.
@ -19,21 +49,6 @@
-- @param #float amplitude
-- @return JumpTiles3D#JumpTiles3D self (return value: cc.JumpTiles3D)
--------------------------------
-- brief Set the ampliture rate of the effect.<br>
-- param amplitudeRate The value of amplitude rate will be set.
-- @function [parent=#JumpTiles3D] setAmplitudeRate
-- @param self
-- @param #float amplitudeRate
-- @return JumpTiles3D#JumpTiles3D self (return value: cc.JumpTiles3D)
--------------------------------
-- brief Get the amplitude of the effect.<br>
-- return Return the amplitude of the effect.
-- @function [parent=#JumpTiles3D] getAmplitude
-- @param self
-- @return float#float ret (return value: float)
--------------------------------
-- brief Create the action with the number of jumps, the sin amplitude, the grid size and the duration.<br>
-- param duration Specify the duration of the JumpTiles3D action. It's a value in seconds.<br>
@ -62,4 +77,10 @@
-- @param #float time
-- @return JumpTiles3D#JumpTiles3D self (return value: cc.JumpTiles3D)
--------------------------------
--
-- @function [parent=#JumpTiles3D] JumpTiles3D
-- @param self
-- @return JumpTiles3D#JumpTiles3D self (return value: cc.JumpTiles3D)
return nil

View File

@ -4,6 +4,17 @@
-- @extend JumpBy
-- @parent_module cc
--------------------------------
-- initializes the action<br>
-- param duration In seconds.
-- @function [parent=#JumpTo] initWithDuration
-- @param self
-- @param #float duration
-- @param #vec2_table position
-- @param #float height
-- @param #int jumps
-- @return bool#bool ret (return value: bool)
--------------------------------
-- Creates the action.<br>
-- param duration Duration time, in seconds.<br>
@ -38,4 +49,10 @@
-- @param self
-- @return JumpTo#JumpTo ret (return value: cc.JumpTo)
--------------------------------
--
-- @function [parent=#JumpTo] JumpTo
-- @param self
-- @return JumpTo#JumpTo self (return value: cc.JumpTo)
return nil

View File

@ -55,4 +55,10 @@
-- @param self
-- @return string#string ret (return value: string)
--------------------------------
--
-- @function [parent=#LabelAtlas] LabelAtlas
-- @param self
-- @return LabelAtlas#LabelAtlas self (return value: cc.LabelAtlas)
return nil

Some files were not shown because too many files have changed in this diff Show More