pandamicro
|
be2a3077c2
|
Remove useless manual bindings for addEventListener functions in UI
|
2015-11-25 14:15:45 +08:00 |
pandamicro
|
930405d52c
|
Remove useless manual bindings for MenuItems
|
2015-11-24 16:32:02 +08:00 |
pandamicro
|
0893d7d4ff
|
Fix text color parser for TextField widget
|
2015-11-19 17:17:17 +08:00 |
XiaoFeng
|
c0c35c603e
|
Update version number & RELEASE_NOTES.md, prepare 3.9 release
|
2015-11-06 18:38:09 +08:00 |
zhangcheng
|
8183d34b68
|
revert old timelineParser-2.x.js and add "||false" to it.
|
2015-11-06 12:50:36 +08:00 |
zhangcheng
|
76ed15591f
|
Update web submodule to latest.
|
2015-11-06 11:56:45 +08:00 |
pandamicro
|
c80f523637
|
Merge pull request #14269 from pandamicro/v3
[ci skip]Fix cocos2d/cocos2d-html5#3156 setBlendFunc issue in parser
|
2015-10-30 17:20:58 +08:00 |
pandamicro
|
246eab11a1
|
Fix cocos2d/cocos2d-html5#3156 setBlendFunc issue in parser
|
2015-10-30 17:19:21 +08:00 |
pandamicro
|
c0ecf7f7aa
|
Merge pull request #14262 from liamcindy/3.9_light_js
update for light3d js reader
|
2015-10-29 13:52:33 +08:00 |
unknown
|
f2f6d25408
|
update for light3d js reader
|
2015-10-29 10:04:56 +08:00 |
pandamicro
|
7d832b0753
|
Merge pull request #14238 from pandamicro/v3
Add cc.Director.EVENT_BEFORE_UPDATE
|
2015-10-28 15:50:37 +08:00 |
Kvial
|
27773b6f1a
|
fix cc.game.config['showFPS'] bug
```javascript
//project.json
{
...
'showFPS' : false,
...
}
```
```javascript
//CCBoot.js
...
config[CONFIG_KEY.showFPS] = config[CONFIG_KEY.showFPS] || true;// this property will be set to true
...
```
|
2015-10-27 20:36:05 +08:00 |
pandamicro
|
616eae2b6d
|
Add cc.Director.EVENT_BEFORE_UPDATE
|
2015-10-27 17:32:57 +08:00 |
pandamicro
|
a3c2904e7f
|
Fix cc.DrawNode.drawPoly
|
2015-10-27 16:46:25 +08:00 |
pandamicro
|
d3664b9616
|
#14128 Fix cc.loader.getRes crash caused by null type
|
2015-10-22 01:16:56 +08:00 |
pandamicro
|
9eeda122e9
|
Fix Scheduler API inconsistency
|
2015-10-21 22:10:48 +08:00 |
XiaoFeng
|
428db9c458
|
update js binding version info
|
2015-10-20 17:04:31 +08:00 |
pandamicro
|
cfb1ee2b11
|
Improved logic of jsb_boot.js to sync with the web engine behavior
|
2015-10-18 22:45:53 +08:00 |
pandamicro
|
5ae2812bf8
|
Sync with CCBoot for web
|
2015-10-10 10:15:36 +08:00 |
pandamicro
|
0ea54868e2
|
Add opacity/color cascade test case for Scale9Sprite
|
2015-10-09 21:01:49 +08:00 |
pandamicro
|
7b85211cfe
|
Remove ScriptComponent
Because windows platform can't successfully compile in previous architecture
|
2015-09-27 22:18:59 +08:00 |
pandamicro
|
91928aa23d
|
Add ComponentJS test case and fix windows platforms
|
2015-09-26 19:43:36 +08:00 |
江龙
|
9eb05707fb
|
add custom spine skeletonAnimation test
|
2015-09-25 13:36:48 +08:00 |
Nick
|
003920f826
|
fix loading pluginx when compile Android with --compile-script flag
|
2015-09-24 11:41:18 +07:00 |
pandamicro
|
d3504a9216
|
Update versions and html5 engine
|
2015-09-22 02:31:21 +08:00 |
pandamicro
|
4aaf017e4c
|
Merge pull request #13890 from jianglong0156/addsetUniformLocationWithMatrix
add CCGLProgram function binding setUniformLocationWithMatrix
|
2015-09-17 17:45:16 +08:00 |
江龙
|
1b320ac248
|
add CCGLProgram function binding setUniformLocationWithMatrix
|
2015-09-17 15:34:41 +08:00 |
zhangcheng
|
fb104189d4
|
Multiplexing ccs.load.
|
2015-09-15 13:04:45 +08:00 |
zhangcheng
|
fa7f97b26e
|
Adjustment spaces.
|
2015-09-15 11:35:43 +08:00 |
zhangcheng
|
83f5f85f56
|
add loadWithVisibleSize js function.
|
2015-09-15 11:16:02 +08:00 |
pandamicro
|
dc607a1784
|
Merge pull request #13726 from jianglong0156/actionExtendSquash
support custom action, and rewrite update function
|
2015-09-09 10:25:56 +08:00 |
江龙
|
badd80bf3a
|
support custom action, and rewrite update function
support custom action in js, and developer can rewrite the update function in custom action class.
useage:
// custom action sample code
var customMoveBy = cc.MoveBy.extend({
ctor:function (duration, deltaPos, deltaY) {
this._super(duration, deltaPos, deltaY);
},
update:function (dt) {
this._super(dt);
if (this.getTarget()) { // rand color
this.getTarget().setColor(cc.color(cc.rand()%255, cc.rand()%255, cc.rand()%255));
}
}
});
|
2015-09-09 10:08:07 +08:00 |
pandamicro
|
4fb34ba190
|
Merge pull request #13703 from cocos2d/v3.8
Sync v3.8 to v3
|
2015-09-07 14:56:37 +08:00 |
pandamicro
|
86fb0fc3bc
|
[JS] Add common APIs for compatibility with web engine
|
2015-09-06 08:57:43 +08:00 |
WenhaiLin
|
a3b5becb45
|
Sync v3.8 to v3
|
2015-08-31 22:05:37 +08:00 |
pandamicro
|
8f6f5c1191
|
Update engine versions
|
2015-08-31 13:52:15 +08:00 |
Liam
|
69da65d7a4
|
update for jsb_opengl_constants
|
2015-08-28 08:42:55 +08:00 |
Liam
|
ed49250b9b
|
update for reader
1.update for sprite3d cullface
2.sync js code
|
2015-08-27 18:29:45 +08:00 |
pandamicro
|
032bc590b7
|
Merge pull request #13593 from jianglong0156/fixActionParamError
fix Action:Place, RotateTo param wrong number error
|
2015-08-27 17:44:46 +08:00 |
江龙
|
a060a82d88
|
fix Action:Place, RotateTo param wrong number error
|
2015-08-27 17:35:09 +08:00 |
pandamicro
|
6ee33499b4
|
Update changelog and versions for v3.8 rc0
|
2015-08-22 11:56:25 +08:00 |
pandamicro
|
006f300ac9
|
Add JS and Lua bindings for CCCameraBackgroundBrush
|
2015-08-21 12:42:36 +08:00 |
VisualSj
|
a4fec3a5e0
|
Update Studio js parser
|
2015-08-20 17:02:41 +08:00 |
pandamicro
|
81d5a8377f
|
Merge pull request #13418 from jianglong0156/fixTMXTileFlagsError
Remove duplicate function definition, Add function adaptation
|
2015-08-17 22:56:59 +08:00 |
pandamicro
|
be165ef900
|
Permit webp image loading
|
2015-08-17 18:55:53 +08:00 |
jianglong0156
|
b19e02bdf6
|
Remove duplicate function definition, Add function adaptation
|
2015-08-17 18:18:38 +08:00 |
pandamicro
|
f2edb1c8f9
|
Merge pull request #13410 from ZhangMenghe/v3-retinaEffect
[ci skip] Fix invisiable testcase of effects
|
2015-08-17 17:51:04 +08:00 |
ZhangMenghe
|
eaa5643c7c
|
Fix invisiable testcase of effects
|
2015-08-17 17:26:25 +08:00 |
VisualSj
|
c52a81a2c2
|
Update JS parser
|
2015-08-17 17:25:17 +08:00 |
XiaoFeng
|
72d21ff810
|
Update reader, add BlendFrame supporting to Skeleton Animation
Update json parser to prepare compatible for both current version output json description file and future optimized version json description file.
|
2015-08-17 13:05:29 +08:00 |