CrazyMan
Member
|
Camera moving by curve (edge) from point A to point B
Small question not by the topic, but please don't ignore it.
When I move camera along the straight line, I tried to use the both of the following functions: AdjustValTime(); Lerp(). Please, explain what the difference between them. Because the result of moving is the same, and I don't know for which purposes AdjustValTime has more parameters.
So the main question is:
How I can move camera by the curve from point A to point B? Maybe there is an complited solution to solve this problem.If not, please provide another appropriate alternative.
Many thx in advance!
|
|
03-18-2010 10:45 PM |
|
Esenthel
Administrator
|
RE: Camera moving by curve (edge) from point A to point B
AdjustValTime is more smooth (it will move with different velocity)
while Lerp is purely linear (constant velocity)
for camera movement I suggest using Lerp4
|
|
03-18-2010 10:52 PM |
|