如何根据方向移动对象?我的意思是,我在一个位置有一个立方体,我想绕 Y 轴旋转并根据它们的方向移动。然后再次移动和旋转以改变你的方向。像这样的东西:
问问题
46 次
1 回答
0
在 JS 中你可以尝试这样的事情:
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 中,您具有旋转立方体的度数
于 2014-01-03T12:47:43.260 回答