[Unity]Obtain and display mouse coordinates
This time, we would like to acquire the coordinates of the mouse and display those acquired coordinates in the Text of the UI.
First, create a new script with an arbitrary name.
Attach the script to the main camera. It does not have to be a camera.
This time, since Text is handled by the script, it is necessary to write “using UnityEngine.UI;”.
In Update, use Input.mousePosition to get the mouse coordinates and assign them to the pos variable.
Finally, the coordinates are written to Text, but since the coordinates are treated as numbers as they are, they are replaced with character data using ToString().
When the game is run, the mouse coordinates can be displayed as shown below.