hello, I’m having trouble drag the object to touch, my script works perfectly.
so that every time I touch the screen the player moves, I need it to move when I just touch the object. the script he’s reading the whole screen … so how do I move the object when you touch it? not play the entire screen … only the object?
var speed: float;
function Update () {
if (Input.touches.Length> 0)
{
if (Input.touches [0]. == TouchPhase.Moved phase)
{
Input.touches var x = [0]. deltaPosition.x * speed * Time.deltaTime;
Input.touches var y = [0]. deltaPosition.y * speed * Time.deltaTime;
transform.Translate (Vector3 new (x, y, 0));
}
}
}