2014-08-29 62 views

回答

-1
//this is the first axis  
Vector3 axis1 = whatever; 
//this is the second axis 
Vector3 axis2 = whatever; 
//this normalizes the second axis 
axis2.Normalize(); 
//this multiplies the the second axis with the first axis' magnitude 
axis2 *= axis1.magnitude; 
+0

非常感謝!這有幫助,但我認爲我不明白「無論」是否應該是一個變量......? – theRelation 2014-08-29 23:04:08

+0

請解釋您的答案,而不是僅僅發佈代碼。 – Tony 2014-08-29 23:07:06

+0

謝謝Tony!我真的可以使用進一步的解釋。有人建議我真正要求的是在某一軸上取得某些東西的位置,並將其傳遞給另一個軸上的不同對象。 – theRelation 2014-08-29 23:15:32

相關問題