What I want to do is that I want to be able to divide a CFrame by a number. How would I do this?
Example:
Point A is at someplace with some orientation;
I want point B to be in the middle of the origin (0, 0, 0) and Point A;
What I want to do is that I want to be able to divide a CFrame by a number. How would I do this?
Example:
Point A is at someplace with some orientation;
I want point B to be in the middle of the origin (0, 0, 0) and Point A;
local middle = PointA.CFrame:Lerp(PointB.CFrame, 0.5)
Sorry, I should I put more time into research. However, this question wasn’t ever asked on this dev forum, so any info is good info
I would have never thought to use lerp. What a neat solution!