how to detect when a player move in unity

Code Example - how to detect when a player move in unity

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