把它分成 ax 和 y 点?
好吧,所以我仍在尝试让我的玩家相对于摄像机移动。我在此处得到了一个很好的答案 但他的结尾是:s(Jx x̂ + Jy ŷ)
那么我怎样才能把这个方程变成 ax 和 y 呢?
Alright, so I'm still trying to make my players movements relative to the camera. I got a good answer here
But he ends it with: s(Jx x̂ + Jy ŷ)
So how can I turn that equation into a x and y?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是获得新的等式观点。 Jx和Jy是操纵杆的值(x值和y值),s你的速度(越高,越快)和 x̂、ŷ 是相机设置的坐标系中的 x 和 y 向量(每次计算新运动时都必须计算这些向量),
因此采用使用这些值,使用公式,您将获得法线 x/y 平面中的新玩家坐标。 (iaw,结果是一个带有 x 和 ay 分量的点,即您的 x 和 y 值)
is the equation to get a new point. Jx and Jy are the values from the joystick (x-value and y-value), s your speed (the higher, the faster) and x̂, ŷ are the x- and y-vectors from your coordinate system set by the camera (you have to compute those every time you compute a new movement)
So take these values, use the formula and you'll get a new player coordinate in the normal x/y plane. (iaw, the result is a point with an x and a y component, which are you x and y values)