如何将你的角度旋转到某人的位置(在lua中)?
假设我们有函数 setAngle(x,y,z) ,它可以完美地工作。 现在我们也有了自己的位置和一只鸡。我们如何使用 setAngle() 来瞄准小鸡?这会在 fps 游戏中完成吗?我不知道如何将位置转换为角度...>.<
Let's say that we have function setAngle(x,y,z) which works perfectly.
Now we also have position of ourself and a chicken. How can we use setAngle() to aim the chicken? This would be done in an fps game? I have no idea on how to convert the positions to the angle... >.<
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
有数学吗?让你自己在点上
处的鸡
,
A
是平面E
的一部分;其点满足方程考虑到您的游戏,
E
可能平行于XY
平面,因此我们有那么,由向量
AB
和XY
平面是反正弦,其中
mag(n)
是E
表面法线的大小。向量AB
。考虑到你的职能,这可能是不必要的,因为在我看来,这就像已经为你调整了一些事情。
There is math? Let be yourself at point
and the chicken at
A
is part of planeE
; its points satisfying the equationConsidering your game,
E
is possibly parallel to theXY
-plane, so we haveThen, the angle enclosed by vector
AB
and theXY
-plane is the arcsin ofwhere
mag(n)
is the magnitude of the surface normal ofE
resp. of the vectorAB
.Considering your function, this might proof unnecessary, for it seems to me like adjusting things for you already.
它是你和鸡之间连线斜率的 aTan。不过使用 aTan2 ,它在垂直方向上效果会更好(感谢 lhf)
It is the aTan of the slope of the line between you and the chicken. Use aTan2 though, it will work better regarding vertical directions (Thanks lhf)