void FixedUpdate()
{
//方向の判断
float horizontalKey = Input.GetAxis("Horizontal");
Debug.Log(horizontalKey);

if(horizontalKey > 0)
{
rb.velocity = new Vector2(speed,rb.velocity.y);
}
else if(horizontalKey < 0)
{
rb.velocity = new Vector2(-speed,rb.velocity.y);
}
}

ridigbodyの移動なんですが、ヌメーっと動くんですが、キビキビ動かしたい場合はどうしたらいいんでしょうか?
慣性が働いている感じになります