James Chen
bd3efebb26
Merge pull request #5513 from 2youyouo2/develop
...
fixed CocoStudioTest/ArmatureTest crashes.
2014-03-03 16:15:51 +08:00
andyque
7d2db27cae
fixed #3599 . use a scheduler to fix the position of editbox when it's parent postion has been changed
2014-03-03 15:46:43 +08:00
minggo
be0ac5dc1c
Merge pull request #5493 from boyu0/bug4150_physics_position_rotation
...
closed #4150 : fix physics position and rotation bug.
2014-03-03 14:57:33 +08:00
yinkaile
8f1ba73a52
fixed add ParticleSystem display crashed
2014-03-03 14:56:56 +08:00
boyu0
fdcbfa2eca
closed #4150 : add const to getPosition/RotationOffset method.
2014-03-03 14:35:44 +08:00
minggo
336dc9f7fc
check validation of ndk root
2014-03-03 14:11:28 +08:00
bmanGH
2d7c032860
Merge remote-tracking branch 'upstream/develop' into develop
...
* upstream/develop: (82 commits)
issue #4165 : Adds missing deprecated methods in Scheduler class.
closed #4165 : Updates comments.
closed #4165 : Deprecates old methods: Scheduler::(un)scheduleSelector, Scheduler::isScheduleForTarget.
issue #4165 : Scheduler::scheduleCallback -> Scheduler::schedule, Scheduler::scheduleSelector -> Scheduler::schedule. APIs are clear for c++ developers now.
Update CHANGELOG [ci skip]
TimerTargetCallback::initWithLambda -> TimerTargetCallback::initWithCallback.
closed #4160 : Adds test case for issue 4160.
closed #4160 : Out of range exception in EventDispatcher
Refactors Scheduler class.
fix windows compile error
add CCConosle [autotest run] command
fixed #4103 . fix crash when websocket close
Modify the depend project path for project "TestCpp".
Update CHANGELOG [ci skip]
Update AUTHORS [ci skip]
issue #4129 : Adds test case for issue 4119.
issue #4129 : Adds default argument(nullptr) for dispatchCustomEvent.
issue #4129 : Remove unused references in Xcode project.
closed #4129 : Event listeners in engine shouldn't be removed by method removeAllEventListeners().
issue #4129 : EventTouch::getTouches return const reference.
...
2014-03-03 14:10:10 +08:00
CaiWenzhi
23a51c7c84
Merge branch 'develop' into develop_nutty_modify_framework_for315
2014-03-03 13:45:53 +08:00
James Chen
4d5e1d4e03
Merge pull request #5510 from dumganhar/develop
...
issue #4165 : Adds missing deprecated methods in Scheduler class.
2014-03-03 12:00:13 +08:00
James Chen
1d2d2df1e9
issue #4165 : Adds missing deprecated methods in Scheduler class.
2014-03-03 11:57:36 +08:00
James Chen
1aa9e35fb2
Merge pull request #5500 from dumganhar/scheduler-refactor
...
closed #4165 : Refactors Scheduler class.
2014-03-03 11:20:06 +08:00
James Chen
04663b4a9c
closed #4165 : Updates comments.
2014-03-03 11:12:04 +08:00
James Chen
09c0bae4a1
closed #4165 : Deprecates old methods: Scheduler::(un)scheduleSelector, Scheduler::isScheduleForTarget.
2014-03-03 11:07:48 +08:00
James Chen
757425c54b
issue #4165 : Scheduler::scheduleCallback -> Scheduler::schedule, Scheduler::scheduleSelector -> Scheduler::schedule. APIs are clear for c++ developers now.
2014-03-03 11:00:30 +08:00
James Chen
e0178ae886
Update CHANGELOG [ci skip]
2014-03-03 10:08:47 +08:00
James Chen
104531c22e
Merge pull request #5499 from heliclei/autotest-run
...
add CCConosle [autotest run] command
2014-03-03 10:06:25 +08:00
minggo
8189d153b6
add install.py
2014-03-03 10:01:41 +08:00
boyu0
c99b0a0b6a
closed #4150 : Fix missing "!"
2014-03-03 01:48:56 +08:00
cai wenzhi
a6e4a5e5aa
Adjust layout
2014-03-02 22:41:47 +08:00
cai wenzhi
683d3c9f14
Merge branch 'develop' into develop_nutty_modify_framework_for315
2014-03-02 19:28:44 +08:00
James Chen
dceb047ba6
TimerTargetCallback::initWithLambda -> TimerTargetCallback::initWithCallback.
2014-03-02 18:43:17 +08:00
James Chen
f3949e078b
[EventDispatcher] Adds 'pauseEventListenersForTarget', 'resumeEventListenersForTarget' and 'removeEventListenersForTarget'.
2014-03-02 17:41:18 +08:00
James Chen
91a3c6ad9d
Merge pull request #5503 from dumganhar/iss4160-out-of-range
...
closed #4160 : Out of range exception in EventDispatcher
2014-03-02 16:32:55 +08:00
James Chen
23f15ed9b5
closed #4160 : Adds test case for issue 4160.
2014-03-02 16:22:57 +08:00
James Chen
30d7130eb0
closed #4160 : Out of range exception in EventDispatcher
2014-03-02 16:16:03 +08:00
Ricardo Quesada
cdc19eea1c
Nodes: setAdditionalTransform() receives a pointer
...
and not a const reference.
If the pointer is `NULL`, then it won't use the additionalTransform
2014-03-01 08:26:54 -08:00
cai wenzhi
4f90676e92
Add method for editor
2014-03-01 22:34:25 +08:00
Ricardo Quesada
219ef6d897
removes CC_TEXTURE_ATLAS_USE_TRIANGLE_STRIP support
...
It was never used. And it is slower.
2014-02-28 22:09:18 -08:00
James Chen
e6d2c4ec73
Refactors Scheduler class.
...
* Timer is an abstract class now.
* Adds three new timers ( `TimerTargetSelector`, `TimerTargetCallback`, `TimerScriptHandler`) which are inherited from Timer.
* Adds new API 'scheduleCallback` / `unscheduleCallbackForKey', and callback's target could be any classes since we're using `void*` to identify target.
* `Scheduler::scheduleCallback` use `std::function`, therefore, it supports passing `lambda`, `member_function` and `global_function`.
* The old selector API is still kept since it's very useful when schedule callback is a member function, it doesn't need a `key` to identify the callback function. (+1 squashed commit)
* Adds relevant test cases.
2014-03-01 14:09:09 +08:00
Ricardo Quesada
b50a787f6d
Adds new ParticleTest for auto-batching
2014-02-28 22:03:36 -08:00
Ricardo Quesada
3bacd45240
indentation fix in CHANGELOG
2014-02-28 21:47:11 -08:00
Ricardo Quesada
5a2697816f
Updates CHANGELOG
2014-02-28 16:41:37 -08:00
Ricardo Quesada
3588041409
removed empty spaces
2014-02-28 16:39:04 -08:00
Ricardo Quesada
9d501479c1
removes unused ivar from ParticleSystemQuad
2014-02-28 16:19:27 -08:00
Ricardo Quesada
da8e571862
shaders set in the correct position
2014-02-28 16:14:55 -08:00
Ricardo Quesada
d78304599d
Cache working OK.
...
Performance increased in 20% for static objects.
2014-02-28 16:10:48 -08:00
Ricardo Quesada
13b60c8759
Applies Wu Hao's patch for 2.5D
2014-02-28 13:48:00 -08:00
Ricardo Quesada
6920bec6ef
transform object returns the MV
...
code cleaner.
the kmGL code is altogether
2014-02-28 11:20:53 -08:00
Ricardo Quesada
ff79c0d9ad
Merge branch 'develop' into visit_draw_improved
2014-02-28 10:59:07 -08:00
heliclei
02bf79f075
fix windows compile error
2014-02-28 23:41:01 +08:00
heliclei
d50391e5dd
add CCConosle [autotest run] command
2014-02-28 23:02:22 +08:00
James Chen
e301e84fc6
Merge pull request #5496 from andyque/bug4103
...
fixed #4103 . fix crash when websocket close
2014-02-28 17:44:49 +08:00
James Chen
c2167501cc
Merge pull request #5494 from natural-law/develop
...
Modify the depend project path for project "TestCpp".
2014-02-28 17:36:36 +08:00
Dhilan007
0837b73dda
fixed incorrect effect of Gaussian Blur.
2014-02-28 17:34:24 +08:00
andyque
46c93f07ad
fixed #4103 . fix crash when websocket close
2014-02-28 17:32:54 +08:00
zhangbin
7d5ac249fb
Modify the depend project path for project "TestCpp".
2014-02-28 17:29:12 +08:00
James Chen
b5ca9f21d1
Merge pull request #5482 from andyque/fix3868
...
fixed #3868 : Possible crash on repeat running between HttpClientTest, WebSocketTest, SocketIOTest
2014-02-28 16:57:33 +08:00
James Chen
2995f91b59
Update CHANGELOG [ci skip]
2014-02-28 16:38:05 +08:00
James Chen
40d29824c5
Update AUTHORS [ci skip]
2014-02-28 16:36:09 +08:00
James Chen
ec4a4466b4
Merge pull request #5461 from Wilhansen/spine_skelFix
...
closed #4156 : spine::Skeleton would not be updated after re-adding to scene.
2014-02-28 16:34:35 +08:00