diff options
Diffstat (limited to 'cheat/internal_rewrite/ragebot_lagcomp.cpp')
| -rw-r--r-- | cheat/internal_rewrite/ragebot_lagcomp.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cheat/internal_rewrite/ragebot_lagcomp.cpp b/cheat/internal_rewrite/ragebot_lagcomp.cpp index ba1cc43..e73eda4 100644 --- a/cheat/internal_rewrite/ragebot_lagcomp.cpp +++ b/cheat/internal_rewrite/ragebot_lagcomp.cpp @@ -286,7 +286,7 @@ namespace features //EASE OUT BY NAVEWINDRE DO NOT STEAL
if( lerptime > 0.075f )
- delta = 1 + pow( delta - 1, 3 );
+ delta = math::ease_out( 0.f, 1.f, delta );
vec3_t next = ( it + 1 ) == data.rend( ) ? ent->m_vecOrigin( ) : ( it + 1 )->m_origin;
vec3_t lerp = math::lerp( it->m_origin, next, delta );
|
