如何根据方向移动对象?我的意思是,我在一个位置有一个立方体,我想围绕Y轴旋转并根据它们的方向移动。然后再次移动并旋转以改变方向。像这样:
答案 0 :(得分:0)
var previousPosition = [x, y]; //change x and y with the coordinate of the object
var nextPosition = [x, y]; //change x and y with the new coordinate of the object
var x = previousPosition[0] - previousPosition[0];
var y = nextPosition[1] - nextPosition[1];
var rad = Math.atan(y/x);
var deg = rad * 180 / 3.14;
在变量deg中,你有旋转你的立方体的度数值