yangxiao
|
572ee3adb2
|
merge cocos
|
2015-09-17 14:24:01 +08:00 |
pandamicro
|
0479cca364
|
Merge pull request #13832 from yangws/downloader
Restructure CCDownloader implement on iOS and Android don't use libcurl.
|
2015-09-16 14:01:28 +08:00 |
Vincent Yang
|
848fa2c0d0
|
Merge cocos2d.
|
2015-09-15 18:30:45 +08:00 |
子龙山人
|
73d2c5d1b8
|
Merge pull request #13577 from fusijie/fix_13454
Fixed sprite debug draw.
|
2015-09-15 14:24:23 +08:00 |
pandamicro
|
f281ae31b0
|
Merge pull request #13725 from WenhaiLin/v3-comonent-refine
Refine ComponentContainer to improve performance
|
2015-09-10 18:04:26 +08:00 |
pandamicro
|
7611f99ee4
|
Merge pull request #13746 from WenhaiLin/v3-menuitemtoggle-refine
Uncoupling the implementation of MenuItemToggle dependence on tag.
|
2015-09-10 16:15:18 +08:00 |
pandamicro
|
98f29e4dee
|
Merge pull request #13764 from fusijie/fix_autopolygon_comments
[ci skip]Fixed autopolygon comments
|
2015-09-10 15:22:55 +08:00 |
fusijie
|
d957e0c032
|
Fixed auto polygon comments out of date.
|
2015-09-10 15:18:04 +08:00 |
WenhaiLin
|
e251866d23
|
Uncoupling the implementation of MenuItemToggle dependence on tag.
|
2015-09-09 15:32:44 +08:00 |
WenhaiLin
|
34be2065e4
|
Refine ComponentContainer to improve performance
|
2015-09-09 11:53:55 +08:00 |
Martin Taylor
|
e592a1a02d
|
fix typos
|
2015-09-09 11:37:41 +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 |
minggo
|
8326ed6535
|
add physics component
|
2015-09-08 09:54:01 +08:00 |
pandamicro
|
00abec6c2c
|
Merge pull request #13707 from pandamicro/fix_layerrgba
[ci skip] Fix compile error in __LayerRGBA
|
2015-09-07 17:27:46 +08:00 |
TheCodez
|
d77045818c
|
Fix compile error in __LayerRGBA
|
2015-09-07 17:25:56 +08:00 |
Dale Stammen
|
030157ded0
|
update libcococs2d name to v3.9 for WinRT platforms
|
2015-09-04 08:46:08 -07:00 |
WenhaiLin
|
5fdb041856
|
Use string::empty() to check whether string is empty.
|
2015-09-01 11:26:09 +08:00 |
yangxiao
|
c23805889f
|
add motionstreak3d
|
2015-09-01 11:02:22 +08:00 |
yangxiao
|
6fa6f1f0da
|
enable depth write
|
2015-08-28 11:46:11 +08:00 |
fusijie
|
5f527bfc1d
|
Fixed sprite debug draw.
|
2015-08-26 18:18:58 +08:00 |
yangxiao
|
2f72a88a20
|
depth test always
|
2015-08-26 16:37:48 +08:00 |
yangxiao
|
7884138dcc
|
disable blend when drawing skybox
|
2015-08-25 14:32:25 +08:00 |
Dale Stammen
|
43687bf7a0
|
moved CCTextureCube from 3D to renderer
|
2015-08-24 03:45:55 -07:00 |
pandamicro
|
0c5b377f00
|
Merge pull request #13531 from pandamicro/texturecube
Move CCTextureCube From 3d to renderer to solve compilation issue
|
2015-08-24 14:06:08 +08:00 |
yangxiao
|
7dcc3dd982
|
Move CCTextureCube From 3d to renderer to solve compilation issue
|
2015-08-24 14:01:50 +08:00 |
songchengjiang
|
be24586f4b
|
fix crash of CameraBackgroundColorBrush
|
2015-08-24 10:23:59 +08:00 |
Dale Stammen
|
b4f2fb0928
|
added missing CCCameraBackgroundBrush files
|
2015-08-21 09:23:01 -07:00 |
pandamicro
|
486af79a47
|
Merge pull request #13511 from fusijie/fix_13509
fixed renderTexture crash bug.
|
2015-08-21 18:24:27 +08:00 |
fusijie
|
cbd7eed9c4
|
fixed renderTexture crash bug.
|
2015-08-21 17:38:56 +08:00 |
pandamicro
|
006f300ac9
|
Add JS and Lua bindings for CCCameraBackgroundBrush
|
2015-08-21 12:42:36 +08:00 |
pandamicro
|
350182c1aa
|
Refactor BackGround to Background
|
2015-08-21 10:43:59 +08:00 |
yangxiao
|
3e2001bdb1
|
Add CCCameraBackgroundBrush
including Color, Depth, SkyBox brushes
Squashed from https://github.com/cocos2d/cocos2d-x/pull/13490
|
2015-08-21 10:43:59 +08:00 |
Dale Stammen
|
d55bc653e0
|
update c++ debug info settings
|
2015-08-20 13:25:17 -07:00 |
pandamicro
|
7bd5cc4e34
|
Merge pull request #13486 from fusijie/fix_11677
Fixed SpriteProgressToRadialMidpointChanged bug.
|
2015-08-20 18:06:38 +08:00 |
fusijie
|
f133e5a754
|
Fixed SpriteProgressToRadialMidpointChanged bug.
|
2015-08-20 17:07:53 +08:00 |
XiaoFeng
|
f26509efe4
|
Fix when picture file used by TMX map file missing or broken, create TMX object will cause program crashed
|
2015-08-19 14:02:12 +08:00 |
子龙山人
|
4f9a81198b
|
Merge pull request #13456 from WenhaiLin/v3.8-label-globalZOrder
Fixed `Label::setGlobalZOrder ` is invalid if label create with system font.
|
2015-08-19 13:46:00 +08:00 |
pandamicro
|
31bc04a301
|
Merge pull request #13455 from MSOpenTech/v3-win10
Windows 10 UWP and WP8.1 app certification fixes
|
2015-08-19 13:36:29 +08:00 |
WenhaiLin
|
827f05c5e1
|
Fixed `Label::setGlobalZOrder ` is invalid when label create with system font.
|
2015-08-19 10:22:48 +08:00 |
Dale Stammen
|
47b72ba30e
|
Merge branch 'v3' into v3-win10
|
2015-08-18 11:07:38 -07:00 |
Dale Stammen
|
8493365be7
|
updates to pass Windows App Certification tests
|
2015-08-18 11:06:47 -07:00 |
子龙山人
|
593eb0737f
|
Merge pull request #13440 from WenhaiLin/v3.8-rc0
Fixed `Label::getLetter(index)->setVisible(true)` cause draws duplicate letters.
|
2015-08-18 17:06:37 +08:00 |
WenhaiLin
|
6bf15885b8
|
Fixed `Label::getLetter(index)->setVisible(true)` cause draws duplicate letters.
|
2015-08-18 15:42:05 +08:00 |
fusijie
|
223d5a7a5c
|
fix copy construct & assignment operator memory leakage.
|
2015-08-18 14:48:16 +08:00 |
pandamicro
|
d2bc03f80f
|
Merge pull request #13424 from WenhaiLin/v3.8-rc0
Label:Fixed display not as expected(Redmine issue:22133).
|
2015-08-18 10:00:36 +08:00 |
WenhaiLin
|
990a25f759
|
Label:Fixed display not as expected(Redmine issue:22133).
|
2015-08-17 22:46:19 +08:00 |
肖峰
|
0473b08dbb
|
Fix gamenode3d parse failed error
- Fix the parser issue
- Add GameNode3DReader to win8 universal project
- Add GameNode3d reader to Android & Linux project
Squashed from https://github.com/cocos2d/cocos2d-x/pull/13369
|
2015-08-17 22:42:21 +08:00 |
子龙山人
|
83de0e798e
|
Merge pull request #13365 from WenhaiLin/v3-label-ignore-r
Label:ignore '\r' character.
|
2015-08-14 17:22:33 +08:00 |
WenhaiLin
|
d25decb414
|
Label:ignore '\r' character.
|
2015-08-14 11:07:34 +08:00 |