2d 查看函数
我正在创建一个 2d 横向卷轴游戏。我在空间中有一个点(鼠标所在的位置),我需要武器来查看并“跟随”该点。
有谁知道从哪里开始?
I am creating a 2d sidescroller game. I have a point in space (where the mouse is) and I need the weapon to look and "follow" that point.
Does anyone know where to begin?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
之间的角度
wikihow:如何查找两个向量 角度,可以适当旋转要旋转的东西。
我不确定 javascript 是否也有一个可用于获取角度的
atan2(x,y)
函数。wikihow: How to Find the Angle Between Two Vectors
After you have the angle, you can appropriately rotate the thing to be rotated.
I am not sure if javascript also has an
atan2(x,y)
function, which could be used to get the angle.