cocos2d碰撞检测

前端之家收集整理的这篇文章主要介绍了cocos2d碰撞检测前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
1. 代码
  
  
CGRect rect1 = [self positionRect:sheep];
CGRect rect2
= [self positionRect:cow];
if ( ! CGRectIsNull(CGRectIntersection(rect1,rect2))) {
// handle collision
[sheep stopAction:jump_4ever];
}
2.然后 schedule 一个 1/30 或者 1/60 的 函数在里面进行检测。 原文链接:https://www.f2er.com/cocos2dx/346681.html

猜你在找的Cocos2d-x相关文章