Dale Stammen
|
9ee4b4af1e
|
Merge branch 'v3' into v3-winrt-audio
|
2015-05-27 11:54:21 -07:00 |
anniruddh.koppal
|
4501a53cfa
|
Added MP3 support to simple audio engine
|
2015-05-27 10:57:26 -07:00 |
子龙山人
|
e044b1ab11
|
Merge pull request #11785 from geron-cn/fixbug
fix crash when run TestTimelineFrameEvent in cpp-test
|
2015-05-27 16:28:13 +08:00 |
andyque
|
c668001e73
|
fix assert failure of NinePatchImageParser and rapidjson
|
2015-05-26 17:20:10 +08:00 |
andyque
|
81d562803b
|
upgrade rapidjson to 1.0.2
|
2015-05-25 11:43:03 +08:00 |
XiaoFeng
|
e94bcbd28c
|
Remove missing resource label from all UI widget
|
2015-05-22 18:21:59 +08:00 |
Dale Stammen
|
46a69cf00b
|
ignore warning 4996
|
2015-05-20 07:59:17 -07:00 |
XiaoFeng
|
be20666b65
|
Fix ArmatureAnimation crash
|
2015-05-18 12:08:26 +08:00 |
minggo
|
56d21b6040
|
Merge pull request #11680 from kaplad/vk_fix_logical_bug
Fix a logical bug that may make wrong behavior
|
2015-05-13 09:41:20 +08:00 |
WenhaiLin
|
c70bac7bb4
|
Add support for visual studio 2015.
|
2015-05-12 16:26:28 +08:00 |
geron-cn
|
3e0b0a0feb
|
fix crash when run TestTimelineFrameEvent in cpp-test
|
2015-05-11 23:04:26 +08:00 |
Vladislav Kaplun
|
f67b4761da
|
Fix a logical bug that may wrong behavior
|
2015-05-11 15:15:00 +03:00 |
Dale Stammen
|
351a898a70
|
removed CC_PLATFORM_WP8
|
2015-05-08 09:19:13 -07:00 |
samuele3hu
|
23e4e0d4e3
|
Merge branch 'v3' of https://github.com/cocos2d/cocos2d-x into v3_7_remove_vs2012
|
2015-05-07 16:21:03 +08:00 |
samuele3hu
|
243da71082
|
Update the project configure of js-tests and js-template on the win32 platform
|
2015-05-07 11:38:43 +08:00 |
samuele3hu
|
b2c361f1a1
|
Fix the compile error for libSpine on the win32 platform
|
2015-05-06 23:30:08 +08:00 |
Ricardo Quesada
|
10b71464a7
|
No throws in cocos2d-x code
|
2015-05-05 17:17:41 -07:00 |
samuele3hu
|
f1b5729183
|
Merge branch 'v3' of https://github.com/cocos2d/cocos2d-x into v3_7_remove_vs2012
|
2015-05-05 16:14:57 +08:00 |
samuele3hu
|
037c17fe5d
|
Remove vs2012 support in v3
|
2015-05-05 16:11:26 +08:00 |
Vladimir Timofeev
|
912956a3b3
|
Correct field initialization order in spine (Xcode warnings).
|
2015-05-01 12:20:11 +03:00 |
Vladimir Timofeev
|
2d8c687d6e
|
Fix the Frame class:
* Field initialization order (warning in Xcode)
* Make conditions with && and || more readable for programmers (warning in Xcode)
|
2015-05-01 11:51:20 +03:00 |
XiaoFeng
|
9d0741544c
|
Fix a logical bug that may cause null pointer been used
|
2015-04-29 15:58:44 +08:00 |
XiaoFeng
|
49b465f0f4
|
Fix wrong shadow & outline color bug for text component
|
2015-04-29 10:46:23 +08:00 |
XiaoFeng
|
27e3dce628
|
Fix simulator crash when miss some armature resource
|
2015-04-28 11:54:36 +08:00 |
XiaoFeng
|
28264c0742
|
Fix simulator crash when add animation under a user defined lua extension
|
2015-04-27 17:42:20 +08:00 |
minggo
|
1f5e5b5058
|
Merge pull request #11536 from xiaofeng11/v3
Update Node3DReader compatibility
|
2015-04-22 10:25:49 +08:00 |
pipu
|
fcd48ce2c3
|
Reset method purge() definition.
|
2015-04-21 18:16:38 +08:00 |
pipu
|
04cde1c52c
|
Modify that serialize base attribute for Node3DReader.
|
2015-04-21 18:05:46 +08:00 |
Vladimir Perminov
|
6ef1e7e3d0
|
Optimize Vec3 use constructor default.
Make Vec3 vec3(Vec3::ZERO); to Vec3 vec3;
|
2015-04-20 12:56:43 +03:00 |
minggo
|
15fe283c2e
|
Merge pull request #11515 from xiaofeng11/v3
update compatibility for upgraded node3d come with 2.2.5 version
|
2015-04-20 17:05:32 +08:00 |
pipu
|
388e4b3a93
|
Modify that parse position for Node3DReader.
|
2015-04-20 15:56:36 +08:00 |
minggo
|
8f88afa123
|
Merge pull request #11510 from xiaofeng11/v3
Bug fix
|
2015-04-20 15:50:44 +08:00 |
pipu
|
4b320a1677
|
Modify that parse text shadow and outline.
|
2015-04-20 11:39:43 +08:00 |
Vladimir Perminov
|
4c33050536
|
Optimize Vec2
small function Vec2 move to Vec2.inl
Added:
setZero();
Change all code:
_vec2 = Vec2(x, y); -> _vec2.set(x, y);
Vec2 vec2 = Vec2(x, y); -> Vec2 vec2(x, y);
_vec2 += Vec2(x, y); -> _vec2.add(x, y);
_vec2 = Vec2::ZERO; -> _vec2.setZero();
Vec2 vec2(Vec2::ZERO); -> Vec2 vec2;
|
2015-04-19 20:40:52 +03:00 |
minggo
|
0e7c096201
|
Merge pull request #11455 from xiaofeng11/v3
Fix won't load child bug
|
2015-04-16 14:37:22 +08:00 |
minggo
|
97f150a89f
|
Merge pull request #11452 from MSOpenTech/v3-remove-wp8
V3 remove WP8 project files
|
2015-04-16 14:32:11 +08:00 |
pipu
|
d1dcf3f620
|
Modify that serialize attribute "Children".
|
2015-04-16 13:58:01 +08:00 |
minggo
|
2b82c0c837
|
Merge pull request #11442 from xiaofeng11/v3
Fix action timeline bug
|
2015-04-16 09:34:45 +08:00 |
Dale Stammen
|
b700798287
|
removed WP8 project files
|
2015-04-15 07:13:54 -07:00 |
xiaofeng11
|
a8fcaf4f4f
|
Merge pull request #17 from geron-cn/xiaov3
fix actiontimeline step over frame when (noloop play && timespeed>1)
|
2015-04-15 13:41:49 +08:00 |
geron-cn
|
7b376fd384
|
fix action timeline step over frame when no (loop play && timespeed>1)
|
2015-04-15 13:32:04 +08:00 |
minggo
|
c62b34ac01
|
update spine runtime to v2.1.25
|
2015-04-14 15:23:16 +08:00 |
pipu
|
755134ba3f
|
Update parse animation easing
|
2015-04-10 17:05:55 +08:00 |
xiaofeng11
|
5ec9b14a33
|
Merge pull request #13 from geron-cn/xiaov3
fix
|
2015-04-10 14:27:09 +08:00 |
geron-cn
|
b8083f2c99
|
fix
|
2015-04-10 14:24:48 +08:00 |
xiaofeng11
|
dda662a7c1
|
Merge pull request #12 from geron-cn/xiaov3
add blendfunc frame
|
2015-04-10 14:04:35 +08:00 |
geron-cn
|
d238f9905e
|
add blendfunc frame
|
2015-04-10 13:34:39 +08:00 |
xiaofeng11
|
ee98b40af9
|
Merge pull request #11 from geron-cn/xiaov3
add tween easing to ccframe
|
2015-04-10 10:46:58 +08:00 |
geron-cn
|
c206725be5
|
fix color
|
2015-04-09 19:13:14 +08:00 |
geron-cn
|
56bb0a68bb
|
add tween easing to carfare
|
2015-04-09 18:10:37 +08:00 |