Libgdx球赛

时间:2013-05-31 16:09:15

标签: java libgdx box2d

我是Libgdx引擎的新手。我一直试图让球随机移动并且边缘反弹。我花了两天时间才完成它。我只有球上下跳动。这个引擎缺乏文档,因此很难学习它。任何帮助表示赞赏。

2 个答案:

答案 0 :(得分:2)

一些伪代码:

If ball.radius + ball.x >= srceen.width or ball.x - ball.radius <= 0
    ball.velocityx *= -1

答案 1 :(得分:1)

你可以试试这个:

    rev=-1;
    vy = intSpeedY;
    vx = intSpeedX;

    ball.x += vx;
    ball.y += vy;
    if (ball.x + ball.radius > right) {
      ball.x = right - ball.radius;
      vx *= rev;
    } else if (ball.x - ball.radius < left) {
      ball.x = left + ball.radius;
      vx *= rev;
    }
    if (ball.y + ball.radius > bottom) {
      ball.y = bottom - ball.radius;
      vy *= rev;
    } else if (ball.y - ball.radius < top) {
      ball.y = top + ball.radius;
      vy *= rev;
    }
祝你好运。