我想让一个球形精灵每次都从地面跳到相同的高度。但是,每跳一次,球的最大高度位置就会增加。

-(id)initWithSize:(CGSize)size {
  if (self = [super initWithSize:size]) {

      SKNode *ground = [SKNode node];
      ground.physicsBody = [SKPhysicsBody bodyWithEdgeFromPoint:CGPointZero toPoint:CGPointMake(CGRectGetMaxX(self.frame), 0)];
      [self addChild:ground];

      SKShapeNode *ball = [[SKShapeNode alloc] init];
      CGMutablePathRef myPath = CGPathCreateMutable();
      CGPathAddArc(myPath, NULL, 0, 0, 30, 0, M_PI*2, YES);
      ball.path = myPath;
      ball.position = CGPointMake(CGRectGetMidX(self.frame), CGRectGetMaxY(self.frame)-100);
      ball.physicsBody = [SKPhysicsBody bodyWithCircleOfRadius:ball.frame.size.width/2];
      ball.physicsBody.linearDamping = 0.0;
      ball.physicsBody.restitution = 1.0;
      [self addChild:ball];

  }
  return self;

}

有什么建议么?

最佳答案

着眼于设置两个身体的恢复力和摩擦力,而不仅仅是球。如果它在增长而不是在缩小,那么物理物体可能会出错。众所周知,SKShapeNode在我的测试中不可靠-我会考虑使用SKSpriteNode来保持您的理智。

关于ios - SpriteKit:意外的物理问题,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/19362404/

10-13 03:04