I’ve normalized a vector to get a direction between a position and an object, but I’d like to alter the magnitude of the vector again so I can move the object a certain distance towards the position using Translate.
I’ve tried Scale on the direction vector and also multiplying it by a primitive type, but since the magnitude stays the same the Vector doesn’t change. I’ve also tried creating a new Vector3 out of the x, y, and z characteristics of the direction variable, but the magnitude is still 1 (??).