我有:
void Update () {
transform.RotateAround(transform.parent.position, new Vector3(0, 1, 0), orbitSpeed * Time.deltaTime);
}
这给了我一个非常基本的圆形轨道.
我需要做些什么才能获得不同的椭圆轨道(行星是每颗恒星随机生成的,所以我也想给它们提供随机的轨道路径)?
解决方法:
您不能使用RotateAround.您将必须发挥自己的作用
尝试使用:
http://answers.unity3d.com/questions/133373/moving-object-in-a-ellipse-motion.html
x, y: center of the ellipse
a, b: semimajor and semiminor axes
编码:
var a : int;
var b : int;
var x: int;
var y : int;
var alpha : int;
var X : int;
var Y : int;
function Update () {
alpha += 10;
X = x + (a * Mathf.Cos(alpha*.005));
Y= y + (b * Mathf.Sin(alpha*.005));
this.gameObject.transform.position = Vector3(X,0,Y);
}
编辑:
如果您希望它绕另一个物体运行,请使用:
this.gameObject.transform.position = anotherObject.transform.position + Vector3(X,0,Y);