Answers for "how to get 2D object drag with mouse unity"

C#
2

how to get 2D object drag with mouse unity

private Vector3 screenPoint;
    private Vector3 offset;

void OnMouseDown() {

    offset = gameObject.transform.position - Camera.main.ScreenToWorldPoint(new Vector3(Input.mousePosition.x, Input.mousePosition.y, screenPoint.z));
}

void OnMouseDrag()
{
    Vector3 curScreenPoint = new Vector3(Input.mousePosition.x, Input.mousePosition.y, screenPoint.z);
    Vector3 curPosition = Camera.main.ScreenToWorldPoint(curScreenPoint) + offset;
    transform.position = curPosition;
}
}
Posted by: Guest on July-06-2020

Code answers related to "how to get 2D object drag with mouse unity"

C# Answers by Framework

Browse Popular Code Answers by Language