#Add acceleration and decceleration
1 messages · Page 1 of 1 (latest)
1 messages · Page 1 of 1 (latest)
hello everyone , i making a 2d platformer game and i need to make acceleration and decceleration for smoother movement
i read some articles about using mathf.clamp or rb.addforce but the problem is i using rb.velocity to move my player
i want to know what should i do to fix it
thanks!
can you switch to adding force instead of modifying velocity?
ok i do it but the problem is i cant make acceleration
Alternatively, Lerp the Velocity instead of setting it to a fixed value to keep your original workflow
what