January 2015
Beginner to intermediate
478 pages
9h 46m
English
Lerp is a method to find unknown values between two known points. The unknown values are approximated through Lerp by connecting these two known points with a straight line.
Lerp operations can also be used to smoothen movements. We will show this using an example in which we will smoothen the camera's target-following feature as well as use it to make the rocks move up and down slightly to simulate them floating on the water. First, add the following line to the CameraHelper class:
private final float FOLLOW_SPEED = 4.0f;
After this, make the following modifications to the same class:
public void update (float deltaTime) {
if (!hasTarget()) return;
position.lerp(target.position, FOLLOW_SPEED * deltaTime); ...Read now
Unlock full access