Hi DarkSlash!
When you say move to "0,-2,0", you set absolute values wich are relative to the scene "grid".
In your case, you must make it relative to the object!
**So There it is in C#:**
transform.position = new Vector3(transform.position.x,transform.position.y - 2, transform.position.z);
Bests, Math
↧