-
Notifications
You must be signed in to change notification settings - Fork 487
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cp body #1092
Cp body #1092
Conversation
Conflicts: samples/js-tests/src/ChipmunkTest/ChipmunkTest.js
cc.log(joint); | ||
}); | ||
body.eachArbiter(function(arbiter){ | ||
cc.log(arbiter); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There is no arbiter in this test, please add one later.
A test for no arbiter body is also important, so add one arbiter after this eachArbiter
call, then do a eachArbiter
call again after added one
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we can't add an arbiter manually, arbiter is used internally and we can only retrieve it from callback when collision accurs.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok, I get it, no problem
Review done, No problem in the logic Test done on Mac and iOS, no problem. |
#1048