private void OnTriggerEnter2D(Collider2D other) { if (other.tag == "crate") { crate = other.GetComponent <Crate>(); crate.StopMoving(); } }