0

オブジェクトの大きさを 1 つの軸で取得し、それを変数の中に入れて、別の軸の別のオブジェクトに与えることは可能ですか? 大きさはそのように機能しませんか?

4

1 に答える 1

-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;
于 2014-08-29T21:28:32.610 に答える