how to check if moving unity code example
Example: how to detect when a player move in unity
if(rigidbody.velocity.magnitude > 0) //Make This a small number
{
// Player is moving
}
if(rigidbody.velocity.magnitude > 0) //Make This a small number
{
// Player is moving
}