作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在将物理模拟为蛋形SKSprite节点。
但是,有断言失败的错误发生:
断言失败:(edge.LengthSquared()> 1.19209290e-7F * 1.19209290e-7F),函数集,文件/SourceCache/PhysicsKit_Sim/PhysicsKit-6.5.4/PhysicsKit/Box2D/Collision/Shapes/b2PolygonShape.cpp,第180行。
以下是代码:
self.egg = [SKSpriteNode spriteNodeWithImageNamed:IMAGE_NAME_EGG];
[self.egg setScale:0.2];
self.egg.position = CGPointMake(self.size.width/2,self.size.height - self.egg.size.height/2);
self.egg.name = IMAGE_NAME_EGG;
CGPoint startPoint = CGPointMake(0, self.egg.size.height*0.4);
CGPoint endPoint = CGPointMake(self.egg.size.width, startPoint.y);
CGPoint controlPointLeft = CGPointMake(startPoint.x, self.egg.size.height);
CGPoint controlPointRight = CGPointMake(endPoint.x, controlPointLeft.y);
CGMutablePathRef pathRef = CGPathCreateMutable();
CGPathMoveToPoint(pathRef, NULL, startPoint.x, startPoint.y);
CGPathAddQuadCurveToPoint(pathRef, NULL, controlPointLeft.x, controlPointLeft.y, self.egg.size.width/2, controlPointLeft.y);
CGPathAddQuadCurveToPoint(pathRef, NULL, controlPointRight.x, controlPointRight.y, endPoint.x,endPoint.y);
CGPathAddArc(pathRef, NULL, self.egg.size.width/2, startPoint.y, self.egg.size.width/2, 0, M_PI, NO);
self.egg.physicsBody = [SKPhysicsBody bodyWithPolygonFromPath:pathRef];
self.egg.physicsBody.dynamic = YES;
self.egg.physicsBody.categoryBitMask = eggCategory;
self.egg.physicsBody.contactTestBitMask = rabbitCategory;
self.egg.physicsBody.collisionBitMask = rabbitCategory;
self.egg.physicsBody.allowsRotation = YES;
[self addChild:self.egg];
最佳答案
根据断言,边缘之一比sprite工具包预期的最小大小短。
Assertion failed: (edge.LengthSquared() > 1.19209290e-7F * 1.19209290e-7F)
关于ios - 使用bodyWithPolygonFromPath:方法对蛋形进行声明时断言失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22613663/
在创建具有自定义形状的 Sprite Kit 物理体时,我遇到了奇怪的内存泄漏问题。这是我的实现方式: CGFloat offsetX = self.frame.size.width * self.a
首先,我要感谢这个网站上的每一位用户,因为我总是在这里寻找解决方案,而且非常有帮助! 我正在尝试使用 SpriteKit 制作 Xonix、Bix 或 Jezzball 之类的游戏。无论如何,我有一个
我是一名优秀的程序员,十分优秀!