Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[AUTO] : updating jsbinding automatically #27

Merged
merged 1 commit into from
Mar 4, 2014
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
108 changes: 54 additions & 54 deletions frameworks/js-bindings/bindings/auto/api/jsb_cocos2dx_auto_api.js
Original file line number Diff line number Diff line change
Expand Up @@ -1116,6 +1116,14 @@ bool
{
},

/**
* @method removeAllEventListeners
*/
removeAllEventListeners : function (
)
{
},

/**
* @method addEventListenerWithSceneGraphPriority
* @param {cc.EventListener} arg0
Expand All @@ -1138,6 +1146,20 @@ bool
{
},

/**
* @method addCustomEventListener
* @param {String} arg0
* @param {function} arg1
* @return {cc.EventListenerCustom}
*/
addCustomEventListener : function (
str,
func
)
{
return cc.EventListenerCustom;
},

/**
* @method addEventListenerWithFixedPriority
* @param {cc.EventListener} arg0
Expand All @@ -1151,11 +1173,11 @@ int
},

/**
* @method removeEventListener
* @param {cc.EventListener} arg0
* @method removeEventListenersForType
* @param {cc.EventListener::Type} arg0
*/
removeEventListener : function (
eventlistener
removeEventListenersForType : function (
type
)
{
},
Expand Down Expand Up @@ -1208,20 +1230,6 @@ int
{
},

/**
* @method addCustomEventListener
* @param {String} arg0
* @param {function} arg1
* @return {cc.EventListenerCustom}
*/
addCustomEventListener : function (
str,
func
)
{
return cc.EventListenerCustom;
},

/**
* @method dispatchEvent
* @param {cc.Event} arg0
Expand All @@ -1232,14 +1240,6 @@ event
{
},

/**
* @method removeAllEventListeners
*/
removeAllEventListeners : function (
)
{
},

/**
* @method removeCustomEventListeners
* @param {String} arg0
Expand All @@ -1251,23 +1251,23 @@ str
},

/**
* @method isEnabled
* @return {bool}
* @method removeEventListener
* @param {cc.EventListener} arg0
*/
isEnabled : function (
removeEventListener : function (
eventlistener
)
{
return false;
},

/**
* @method removeEventListenersForType
* @param {cc.EventListener::Type} arg0
* @method isEnabled
* @return {bool}
*/
removeEventListenersForType : function (
type
isEnabled : function (
)
{
return false;
},

/**
Expand Down Expand Up @@ -1432,16 +1432,6 @@ float
{
},

/**
* @method setLocalZOrder
* @param {int} arg0
*/
setLocalZOrder : function (
int
)
{
},

/**
* @method setScaleZ
* @param {float} arg0
Expand Down Expand Up @@ -1906,16 +1896,6 @@ getRotation : function (
return 0;
},

/**
* @method getLocalZOrder
* @return {int}
*/
getLocalZOrder : function (
)
{
return 0;
},

/**
* @method getAnchorPointInPoints
* @return {PointObject}
Expand Down Expand Up @@ -2018,6 +1998,16 @@ getDisplayedOpacity : function (
return 0;
},

/**
* @method getLocalZOrder
* @return {int}
*/
getLocalZOrder : function (
)
{
return 0;
},

/**
* @method getScheduler
* @return {cc.Scheduler|cc.Scheduler}
Expand Down Expand Up @@ -2257,6 +2247,16 @@ getScaleX : function (
return 0;
},

/**
* @method setLocalZOrder
* @param {int} arg0
*/
setLocalZOrder : function (
int
)
{
},

/**
* @method getWorldToNodeAffineTransform
* @return {cc.AffineTransform}
Expand Down
Loading