zilongshanren
|
3e2094981f
|
add scale9sprite rendering type test
|
2015-10-30 14:01:01 +08:00 |
pandamicro
|
b58e656620
|
Merge pull request #14264 from super626/v3
Fix: Mesh::setGLProgramState may modify state block
|
2015-10-30 10:11:23 +08:00 |
zilongshanren
|
f84c2de1e2
|
add sprite and scale9sprite batch test
|
2015-10-30 09:58:02 +08:00 |
Filipe Lemos
|
11fc969ecb
|
Fixed inconsistency in getVersion() when no version is available on Android
|
2015-10-29 17:14:32 +00:00 |
zilongshanren
|
1417534194
|
add rendering type to scale9sprite
|
2015-10-29 23:13:36 +08:00 |
zilongshanren
|
7c82f9fe88
|
cache slice sprite calculation
|
2015-10-29 21:53:58 +08:00 |
Filipe Lemos
|
9aa1f7138d
|
Added override keyword to getVersion
|
2015-10-29 08:36:03 +00:00 |
zilongshanren
|
9a14ad5b14
|
fix a small bug related to non slice anchorPoint
|
2015-10-29 14:27:27 +08:00 |
yangxiao
|
11f5e6cf96
|
setGLProgramState should not modify state block
|
2015-10-29 14:22:13 +08:00 |
yangxiao
|
16d9cf1af9
|
setStateBlock implement
|
2015-10-29 14:21:25 +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 |
pandamicro
|
617f5265f1
|
Merge pull request #14256 from pandamicro/v3
Use generational gc friendly API in JSTouchDelegate
|
2015-10-29 12:34:42 +08:00 |
zilongshanren
|
ccf4cb5a74
|
improve scale9sprite
|
2015-10-29 10:41:58 +08:00 |
pandamicro
|
ac54c9b7de
|
Merge pull request #14261 from liamcindy/3.9_light
update for light3d reader
|
2015-10-29 10:08:32 +08:00 |
unknown
|
f2f6d25408
|
update for light3d js reader
|
2015-10-29 10:04:56 +08:00 |
unknown
|
917edbcf62
|
update for light3d reader
|
2015-10-29 09:53:54 +08:00 |
Filipe Lemos
|
04fa7a8902
|
Added Application::getVersion() to get the app version.
|
2015-10-28 17:57:57 +00:00 |
pandamicro
|
b66fa04c21
|
Merge pull request #14255 from xiaofeng11/v3_23634
Fix "UItest->UicheckBox" display status, make it same as C++ version
|
2015-10-28 18:32:49 +08:00 |
pandamicro
|
2dde476aa5
|
Update web engine reference
|
2015-10-28 18:11:29 +08:00 |
XiaoFeng
|
53d2874507
|
Fix "UItest->UicheckBox" display status, make it same as C++ version
|
2015-10-28 17:38:17 +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 |
pandamicro
|
15e400fb2e
|
Merge pull request #14248 from xiaofeng11/v3_23634
Fix "PhysicsTest->Fixed Update Test" under lua-test perform in wrong status.
|
2015-10-28 15:49:52 +08:00 |
pandamicro
|
06b828250a
|
Merge pull request #14241 from yuyangame/patch-1
fix cc.game.config['showFPS'] bug
|
2015-10-28 15:48:21 +08:00 |
pandamicro
|
893edbaf24
|
Merge pull request #14246 from WenhaiLin/v3.9
Fixed text may display of incomplete when Label create with system font on Mac.
|
2015-10-28 15:47:45 +08:00 |
pandamicro
|
b6b9364a84
|
Merge pull request #14232 from xiaofeng11/v3
Fix FadeOutDownTilesTest won't show last tile
|
2015-10-28 15:44:28 +08:00 |
XiaoFeng
|
80b2def648
|
Fix "PhysicsTest->Fixed Update Test" under lua-test perform in wrong status.
|
2015-10-28 14:12:24 +08:00 |
pandamicro
|
5a963c66cd
|
Merge pull request #14240 from neokim/android_test_app_landscape_reversible
Change the android test app to be landscape reversible.
|
2015-10-28 13:03:33 +08:00 |
pandamicro
|
13f26728a8
|
Merge pull request #14244 from CocosRobot/update_lua_bindings_1446002663
[ci skip][AUTO]: updating luabinding & jsbinding automatically
|
2015-10-28 13:01:36 +08:00 |
WenhaiLin
|
7b758fd780
|
Fixed text may display of incomplete when Label create with system font on Mac.
|
2015-10-28 12:06:58 +08:00 |
pandamicro
|
68d75a519a
|
Use generational gc friendly API in JSTouchDelegate
|
2015-10-28 11:55:28 +08:00 |
CocosRobot
|
09cbc2145d
|
[ci skip][AUTO]: updating luabinding & jsbinding automatically
|
2015-10-28 03:29:16 +00:00 |
pandamicro
|
4dff2c90e4
|
Merge pull request #14243 from xiaofeng11/v3_23634
Bug fix
|
2015-10-28 11:21:31 +08:00 |
XiaoFeng
|
c55f030218
|
Fix "Test change animation intenal" under js test can not change back to 60fps
|
2015-10-28 11:18:12 +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 |
Neo Kim
|
11b46a7b04
|
Change the android test app to be landscape reversible.
|
2015-10-27 20:43:56 +09:00 |
XiaoFeng
|
6029635493
|
Remove comment out codes
|
2015-10-27 18:43:51 +08:00 |
pandamicro
|
616eae2b6d
|
Add cc.Director.EVENT_BEFORE_UPDATE
|
2015-10-27 17:32:57 +08:00 |
pandamicro
|
0dc42bd9a7
|
Merge pull request #14237 from CocosRobot/update_lua_bindings_1445937936
[ci skip][AUTO]: updating luabinding & jsbinding automatically
|
2015-10-27 17:32:12 +08:00 |
pandamicro
|
535c4bcd1d
|
Merge pull request #14236 from CocosRobot/update_lua_bindings_1445937846
[ci skip][AUTO]: updating luabinding & jsbinding automatically
|
2015-10-27 17:31:43 +08:00 |
CocosRobot
|
e216073ea0
|
[ci skip][AUTO]: updating luabinding & jsbinding automatically
|
2015-10-27 09:30:32 +00:00 |
CocosRobot
|
35f7f3cb2f
|
[ci skip][AUTO]: updating luabinding & jsbinding automatically
|
2015-10-27 09:29:42 +00:00 |
pandamicro
|
aa9f0d5bd5
|
Merge pull request #14049 from CodeAndWeb/v3-sprite-polygoninfo-from-plist
Extending SpriteFrameCache to read PolygonInfo from atlas plist file
|
2015-10-27 17:28:22 +08:00 |
pandamicro
|
d2d60e36d2
|
Merge pull request #14222 from TheCodez/fix_memoryleak
Fix memory leak in Enhance-API
|
2015-10-27 17:22:11 +08:00 |
pandamicro
|
c491ddf1e8
|
Merge pull request #14235 from pandamicro/v3
Fix cc.DrawNode.drawPoly
|
2015-10-27 17:19:50 +08:00 |
pandamicro
|
a3c2904e7f
|
Fix cc.DrawNode.drawPoly
|
2015-10-27 16:46:25 +08:00 |
XiaoFeng
|
f374df408e
|
Fix FadeOutDownTilesTest won't show last tile
|
2015-10-27 14:41:31 +08:00 |
Joachim Grill
|
94ab41ceb3
|
use "const string &" in SpriteFrameCache
|
2015-10-26 09:36:01 +01:00 |
pandamicro
|
eff8cc16c1
|
Merge pull request #14228 from xiaofeng11/v3
Fix ActionManagerEx some times crash when reload action frames.
|
2015-10-26 11:47:58 +08:00 |
XiaoFeng
|
036585ef95
|
Fix ActionManagerEx some times crash when reload action frames.
|
2015-10-26 10:38:17 +08:00 |
pandamicro
|
d74cfad453
|
Merge pull request #14226 from CocosRobot/update_lua_bindings_1445823650
[ci skip][AUTO]: updating luabinding & jsbinding automatically
|
2015-10-26 09:49:50 +08:00 |