Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions programming/hardware-support/mouse-support.rst
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,10 @@ To get the position:

.. code-block:: python

if base.mouseWatcherNode.hasMouse():
x = base.mouseWatcherNode.getMouseX()
y = base.mouseWatcherNode.getMouseY()
pointer = base.win.get_pointer(0)
if pointer.in_window:
mouseX = pointer.get_x()
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

bad indent, needs another space on this line

Let's encourage pointer.x and pointer.y instead

Variable names should be all-lower-caps, so use mouse_x and mouse_y (or just x and y as in the original)

mouseY = pointer.get_y()

.. only:: cpp

Expand Down