Last active
July 4, 2017 22:22
-
-
Save matt123miller/f1a805b290e73e73ece4dffacae9b755 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
transform.position = Vector3.lerp(transform.position, target.position, Time.deltaTime) | |
// Or sometimes with an arbitrary multiplier to time, changing the lerp rate. | |
float lerpMod = ???; // Some formula | |
transform.position = Vector3.lerp(transform.position, target.position, Time.deltaTime * lerpMod) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment