My character needs to slide and not bounce off a slope.
The solutions I found here use a Reflection vector, but they make my character bouncy when they run downwards a slope.
var reflectVector = normal.clone().multiplyScalar(-this.velocity.clone().dot(normal)); this.velocity.addSelf(reflectVector); How can I make my character simply stick to the terrain when they walk? 