Comment détecter quand un joueur se déplace dans l'unité

if(rigidbody.velocity.magnitude > 0) //Make This a small number
 {
   // Player is moving
 }
Cooperative Cowfish