#spawn something between the hands
1 messages · Page 1 of 1 (latest)
You could probably use a Lerp set to 0.5 progress to get the middle between the hands
Yup, that's how!
Lerp(a,b,c) where a = start, b = end, c = progress;
Lerp(Left Hand Position, Right Hand Position, 0.5), you can also switch around the hand position since it wouldn't matter.
@oak ingot
can’t u help subtract the position of your right and left hand?
That returns the Direction from Left Hand to Right Hand * Distance (Magnitude)
oooo i learned something
Position A – Position B = Direction from B to A * Distance (Magnitude)
