如何让子弹朝 3 维空间中的一点移动

Dis*_*ser 5 java math 3d lwjgl

我目前正在使用 java LWJGL 制作 3D 第一人称射击游戏。我想转动子弹并将其移向世界上的指定点。我设法使子弹在 Y 轴上转动,但不能在 X 和 Z 轴上转动。如何使子弹在 Z 和 X 轴上转动,然后向该点移动?

这是我的子弹类:

package entities;

import org.lwjgl.util.vector.Vector3f;

import models.TexturedModel;
import renderEngine.DisplayManager;
import toolbox.MousePicker;

public class Bullet extends Entity{

private static Vector3f currentRay = new Vector3f();
private static final float RAY_RANGE = 600;
public static boolean reset = true;
public Bullet(TexturedModel model, Vector3f position, float rotX, float rotY, float rotZ, float scale) {
    super(model, position, rotX, rotY, rotZ, scale);

}
public void move(Bullet b){
    float distance =  2 * DisplayManager.getFrameTimeSeconds();
    currentRay = MousePicker.calculateMouseRay();
    Vector3f endPoint = MousePicker.getPointOnRay(currentRay, 10000);
    //I want my Bullet to move towards the Vector3f endPoint

    float zDistance = endPoint.z - this.getPosition().z;
    float xDistance = endPoint.x - this.getPosition().x;
    double angleToTurn = Math.toDegrees(Math.atan2(xDistance,     zDistance));
    this.setRotY((float)angleToTurn);
    float dx = (float) (distance * Math.sin(Math.toRadians(super.getRotY())));
    float dz = (float) (distance * Math.cos(Math.toRadians(super.getRotY())));

    super.increasePosition(dx, 0, dz);


}
    }
Run Code Online (Sandbox Code Playgroud)

Pig*_*nic 4

你想要做的是获得使你的子弹更接近你的目标(这里是鼠标)所需的速度endPoint

首先,你得到两者之间的向量endPoint.sub(position);

然后你normalize()就可以得到方向了。

scale()可以用你想要的速度来获得即时速度。

和你super.increasePosition(speed.x, speed.y, speed.z);让它朝着目标前进

  • 非常感谢!经过两个月的折腾终于成功了! (2认同)