Hey, i like to move my box while pushing. But the code is not working.
function OnCollisionEnter(collision : Collision) {
if(collision.gameObject.tag == "man"){
Debug.Log("hit2");
transform.position = Vector3(464.8797,1.678224,1.839526);
}
}
Stijn