minggo
|
76613fc85f
|
Merge pull request #11506 from CocosRobot/update_lua_bindings_1429508341
[AUTO]: updating luabinding automatically
|
2015-04-20 15:51:57 +08:00 |
minggo
|
8f88afa123
|
Merge pull request #11510 from xiaofeng11/v3
Bug fix
|
2015-04-20 15:50:44 +08:00 |
CocosRobot
|
87e29db218
|
[AUTO]: updating luabinding automatically
|
2015-04-20 05:40:58 +00:00 |
minggo
|
fc16bc6154
|
Merge pull request #11501 from samuele3hu/v3_studio2
Add Lua bindings for WebView and related test case
|
2015-04-20 13:36:08 +08:00 |
samuele3hu
|
9477e89723
|
Fix the compile error on the win32
|
2015-04-20 11:46:48 +08:00 |
pipu
|
4b320a1677
|
Modify that parse text shadow and outline.
|
2015-04-20 11:39:43 +08:00 |
minggo
|
bb4e749a93
|
Merge pull request #11489 from dumganhar/clean-order
[Director FIX]: Clean all schedulers and remove all eventlisteners after exiting scene
|
2015-04-20 10:47:37 +08:00 |
minggo
|
c7fe7704d4
|
Merge pull request #11499 from perminovVS/v3-dev-user-default-only-delegate
UserDefault::setDelegate
|
2015-04-20 10:36:56 +08:00 |
samuele3hu
|
4f22a1470b
|
Update the project setting
|
2015-04-20 10:11:39 +08:00 |
samuele3hu
|
067ad6ad60
|
Merge branch 'v3' of https://github.com/cocos2d/cocos2d-x into v3_studio2
Conflicts:
cocos/scripting/lua-bindings/proj.android/Android.mk
cocos/scripting/lua-bindings/proj.ios_mac/cocos2d_lua_bindings.xcodeproj/project.pbxproj
|
2015-04-20 10:05:02 +08:00 |
minggo
|
5b5d9f1337
|
Merge pull request #11498 from perminovVS/v3-dev-optimize-vec2
Optimize Vec2
|
2015-04-20 09:53:28 +08:00 |
Vladimir Perminov
|
87d0d4f677
|
UserDefault::setDelegate
UserDefault very slow, each call need read / write and parse xml file.
Delegate makes it possible to use other variants.
|
2015-04-19 22:07:48 +03: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 |
James Chen
|
6864a4a7bb
|
[Director FIX]: Clean all scheduler and remove all eventlisteners after exiting scene
|
2015-04-18 15:06:09 +08:00 |
Dale Stammen
|
f1f0c5a653
|
start of back button support
|
2015-04-17 15:47:52 -07:00 |
Dale Stammen
|
79f312d101
|
call pause on correct thread
|
2015-04-17 09:31:02 -07:00 |
Dale Stammen
|
2ccff5671a
|
fix for encoding images with WIC
|
2015-04-17 09:20:23 -07:00 |
minggo
|
f210fadb00
|
Merge pull request #11472 from milos1290/v3
Adding Lerp for Vec3
|
2015-04-17 17:56:10 +08:00 |
minggo
|
e133f81226
|
Merge pull request #11482 from samuele3hu/v3_remove_useless
[ci skip]Fix the error that the default value of `a` should be 255 when converting a color3b_table into cocos2d::Color4B
|
2015-04-17 17:54:53 +08:00 |
minggo
|
f38bfdf212
|
Merge pull request #11478 from WenhaiLin/v3-label-fix
Label:Fixed the shadow effect of system font might not be shown.
|
2015-04-17 17:53:52 +08:00 |
minggo
|
768d2bdb48
|
Merge pull request #11481 from andyque/remove-all-lz-in-android
remove system zlib dependency since we use our own prebuilt version
|
2015-04-17 17:49:14 +08:00 |
samuele3hu
|
9aadc2a993
|
Fix the error that the default value of `a` should be 255 when converting a color3b_table into cocos2d::Color4B,
|
2015-04-17 17:40:28 +08:00 |
andyque
|
d3a06de6d6
|
remove system zlib dependency since we use our own prebuilt version of
zlib now.
|
2015-04-17 17:24:33 +08:00 |
minggo
|
e3463d23a8
|
Merge pull request #11479 from samuele3hu/v3_remove_useless
Remove the reference of quick module
|
2015-04-17 17:13:51 +08:00 |
samuele3hu
|
b300701ec4
|
Remove the reference of quick module
|
2015-04-17 15:52:45 +08:00 |
WenhaiLin
|
9c2e39dd49
|
Label:Fixed the shadow color of system font may be incorrect.
|
2015-04-17 15:42:41 +08:00 |
WenhaiLin
|
5a438ed9a1
|
Label:Fixed the shadow effect of system font might not be shown.
|
2015-04-17 15:26:43 +08:00 |
WenhaiLin
|
0ac99002d5
|
Label:disableEffect(LabelEffect::XXXX) support disable all effect.
|
2015-04-17 14:39:52 +08:00 |
samuele3hu
|
b72034a3f6
|
Add Lua bindings for WebView and related test case
|
2015-04-17 14:08:47 +08:00 |
Milos Jakovljevic
|
a33d775b51
|
Adding linear interpolation convenient method in MathUtils.
|
2015-04-16 15:17:25 +02:00 |
Milos Jakovljevic
|
b3ee529a8c
|
Adding Lerp for Vec3
|
2015-04-16 14:43:12 +02:00 |
minggo
|
3c7d5afce2
|
Merge pull request #11465 from WenhaiLin/v3-videoplayer-iosfix
Fix crash when play streamed MP4 file.
|
2015-04-16 18:16:28 +08:00 |
WenhaiLin
|
fc75f46abb
|
Fix crash when play streamed MP4 file.
|
2015-04-16 16:27:09 +08:00 |
minggo
|
408d164fea
|
Merge pull request #11458 from andyque/fix-a-side-effect-of-button-memory-optimization
fix side effect of ui::button clone
|
2015-04-16 16:15:25 +08:00 |
andyque
|
8a9f420735
|
fix side effect of ui::button clone
|
2015-04-16 14:38:00 +08: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 |
CocosRobot
|
f1bd23aa32
|
[AUTO]: updating luabinding automatically
|
2015-04-16 02:19:38 +00:00 |
minggo
|
29de9d397f
|
Merge pull request #11445 from andyque/improve-the-arguments
make scrollview time arguments more meaningful
|
2015-04-16 10:14:11 +08:00 |
minggo
|
c7e41e1045
|
Merge pull request #11451 from WenhaiLin/v3-jni-string
Fixed JNI illegal start byte error
|
2015-04-16 10:00:22 +08:00 |
minggo
|
458aa0028b
|
Merge pull request #11450 from jianglong0156/v3
uiWebView constructor add CC_CONSTRUCTOR_ACCESS
|
2015-04-16 09:58:23 +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
|
b1c9c34c19
|
added Windows Image Component support for Windows 8.1 Universal App
|
2015-04-15 09:19:38 -07:00 |
Dale Stammen
|
01135f892f
|
fixed typo
|
2015-04-15 09:19:17 -07:00 |
Dale Stammen
|
7d22e49642
|
only needed if _MSC_VER < 1900
|
2015-04-15 09:18:48 -07:00 |
Dale Stammen
|
68430ce4fa
|
added Windows Image Component support for Windows 8.1 Universal App
|
2015-04-15 09:18:23 -07:00 |
Dale Stammen
|
081b9ccac2
|
updated freetype include path
|
2015-04-15 08:20:03 -07:00 |
Dale Stammen
|
c9eb2790be
|
updated chipmunk and freetype libs
|
2015-04-15 08:08:18 -07:00 |
Dale Stammen
|
911f8f6f8a
|
removed WP8 UIEditBox project files
|
2015-04-15 07:16:39 -07:00 |