Created
February 11, 2025 19:34
-
-
Save joonatansir/1e8c9c7e2a32252c0881fbf43ee6b6df to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| public static Vector3 ExpDecay(Vector3 a, Vector3 b, float decay, float dt) | |
| { | |
| return b + (a - b) * Mathf.Exp(-decay * dt); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment