How to find center of 2 Vector3

How do I find the center of 2 Vector3? I’m trying to find the center position of 2 objects.
Addqw

You can use linear interpolation, in other words lerp. part1.Position:Lerp(part2.Position, 0.5) would give you the vector in the middle of part1 and part2.

3 Likes

This works but we can go easier with a simple average.
(part1.Position + part2.Position) / 2

6 Likes