TheConceptBoy Posted November 18, 2018 Posted November 18, 2018 This line: Math:Lerp(revolver_x, revolver_ir_x, revolver_amnt); In C++ returns a (Identifier is undefined) error https://imgur.com/a/fEcr68R I'm not entirely sure how much of surrounding code you need, this is located in the App:Loop Quote
Josh Posted November 18, 2018 Posted November 18, 2018 Shouldn't it be Math::Lerp()? Quote My job is to make tools you love, with the features you want, and performance you can't live without.
TheConceptBoy Posted November 19, 2018 Author Posted November 19, 2018 I ended up just writing my own lerp function for the time being: float lerp(float start, float end, float amnt) { return start + amnt * (end - start); } 1 Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.