以一定角度射球?

发布于 2024-10-20 08:11:44 字数 458 浏览 1 评论 0原文

当我从大炮中射出球时,球并没有准确地射向鼠标点击的鼠标位置。在某些角度看起来不错,但在其他角度则有好几度的偏差。这是正确的公式吗?

谢谢

public function setPos() {
    destX = gameManager.stage.mouseX;
    destY = gameManager.stage.mouseY;
    var dx:Number = destX -gameManager.tank.x;
    var dy:Number = destY - gameManager.tank.y;

    radians = Math.atan2(dy, dx);
}

public function Shoot() {
     this.x +=  speed *  Math.cos(radians);
    this.y +=  speed *Math.sin(radians);
}

When I shoot the ball out of my cannon, the ball does not shoot exactly at the mouse position of the mouse click. At certain angles it seems fine, but others its off by several degrees. Is this the correct formualas?

thanks

public function setPos() {
    destX = gameManager.stage.mouseX;
    destY = gameManager.stage.mouseY;
    var dx:Number = destX -gameManager.tank.x;
    var dy:Number = destY - gameManager.tank.y;

    radians = Math.atan2(dy, dx);
}

public function Shoot() {
     this.x +=  speed *  Math.cos(radians);
    this.y +=  speed *Math.sin(radians);
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

可可 2024-10-27 08:11:44

乍一看是这样的。

你如何确定它是“关闭”的?你计算过“坦克”上的注册点了吗?它是在相同的向量中一致关闭还是随机的?我不认为您已将 swf 发布到网络上的某个地方?

That looks right at first glance.

How are you determining that it is "off"?. Have you accounted for the registration point on "tank"? Is it off consistently in the same vectors or is it random? I don't suppose that you have the swf posted on the web somewhere?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文