| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 | .. _doc_mouse_and_input_coordinates:Mouse and input coordinates===========================About-----The reason for this small tutorial is to clear up many common mistakesabout input coordinates, obtaining mouse position and screen resolution,etc.Hardware display coordinates----------------------------Using hardware coordinates makes sense in the case of writing complexUIs meant to run on PC, such as editors, MMOs, tools, etc. However, it doesnot make as much sense outside of that scope.Viewport display coordinates----------------------------Godot uses viewports to display content, and viewports can be scaled byseveral options (see :ref:`doc_multiple_resolutions` tutorial). Use, then, thefunctions in nodes to obtain the mouse coordinates and viewport size,for example:.. tabs:: .. code-tab:: gdscript GDScript    func _input(event):        # Mouse in viewport coordinates.        if event is InputEventMouseButton:            print("Mouse Click/Unclick at: ", event.position)        elif event is InputEventMouseMotion:            print("Mouse Motion at: ", event.position)        # Print the size of the viewport.        print("Viewport Resolution is: ", get_viewport().get_visible_rect().size) .. code-tab:: csharp    public override void _Input(InputEvent @event)    {        // Mouse in viewport coordinates.        if (@event is InputEventMouseButton eventMouseButton)        {            GD.Print("Mouse Click/Unclick at: ", eventMouseButton.Position);        }        else if (@event is InputEventMouseMotion eventMouseMotion)        {            GD.Print("Mouse Motion at: ", eventMouseMotion.Position);        }        // Print the size of the viewport.        GD.Print("Viewport Resolution is: ", GetViewport().GetVisibleRect().Size);    }Alternatively, it's possible to ask the viewport for the mouse position:.. tabs:: .. code-tab:: gdscript GDScript    get_viewport().get_mouse_position() .. code-tab:: csharp    GetViewport().GetMousePosition();.. note:: When the mouse mode is set to ``Input.MOUSE_MODE_CAPTURED``, the ``event.position`` value from ``InputEventMouseMotion`` is the center of the screen. Use ``event.relative`` instead of ``event.position`` and ``event.velocity`` to process mouse movement and position changes.
 |