@@ -680,7 +680,7 @@ def on_mouse_press(self, x: int, y: int, button: int, modifiers: int) -> EVENT_H
680680
681681 modifiers:
682682 Bitwise 'and' of all modifiers (shift, ctrl, num lock)
683- active during this event. See :ref:`keyboard_modifiers `.
683+ active during this event. See :ref:`pg_simple_input_keyboard_modifiers `.
684684 """
685685 pass
686686
@@ -705,7 +705,7 @@ def on_mouse_drag(
705705 Which button is pressed
706706 modifiers:
707707 Bitwise 'and' of all modifiers (shift, ctrl, num lock)
708- active during this event. See :ref:`keyboard_modifiers `.
708+ active during this event. See :ref:`pg_simple_input_keyboard_modifiers `.
709709 """
710710 return self .on_mouse_motion (x , y , dx , dy )
711711
@@ -730,7 +730,7 @@ def on_mouse_release(self, x: int, y: int, button: int, modifiers: int) -> EVENT
730730 - ``arcade.MOUSE_BUTTON_MIDDLE``
731731 modifiers:
732732 Bitwise 'and' of all modifiers (shift, ctrl, num lock)
733- active during this event. See :ref:`keyboard_modifiers `.
733+ active during this event. See :ref:`pg_simple_input_keyboard_modifiers `.
734734 """
735735 return EVENT_UNHANDLED
736736
@@ -831,7 +831,7 @@ def on_key_press(self, symbol: int, modifiers: int) -> EVENT_HANDLE_STATE:
831831 Key that was just pushed down
832832 modifiers:
833833 Bitwise 'and' of all modifiers (shift, ctrl, num lock)
834- active during this event. See :ref:`keyboard_modifiers `.
834+ active during this event. See :ref:`pg_simple_input_keyboard_modifiers `.
835835 """
836836 return EVENT_UNHANDLED
837837
@@ -853,7 +853,7 @@ def on_key_release(self, symbol: int, modifiers: int) -> EVENT_HANDLE_STATE:
853853 symbol (int): Key that was released
854854 modifiers (int): Bitwise 'and' of all modifiers (shift,
855855 ctrl, num lock) active during this event.
856- See :ref:`keyboard_modifiers `.
856+ See :ref:`pg_simple_input_keyboard_modifiers `.
857857 """
858858 return EVENT_UNHANDLED
859859
@@ -1440,7 +1440,7 @@ def on_mouse_press(self, x: int, y: int, button: int, modifiers: int) -> bool |
14401440
14411441 modifiers:
14421442 Bitwise 'and' of all modifiers (shift, ctrl, num lock)
1443- active during this event. See :ref:`keyboard_modifiers `.
1443+ active during this event. See :ref:`pg_simple_input_keyboard_modifiers `.
14441444 """
14451445 pass
14461446
@@ -1465,7 +1465,7 @@ def on_mouse_drag(
14651465 Which button is pressed
14661466 _modifiers:
14671467 Bitwise 'and' of all modifiers (shift, ctrl, num lock)
1468- active during this event. See :ref:`keyboard_modifiers `.
1468+ active during this event. See :ref:`pg_simple_input_keyboard_modifiers `.
14691469 """
14701470 self .on_mouse_motion (x , y , dx , dy )
14711471 return False
@@ -1492,7 +1492,7 @@ def on_mouse_release(self, x: int, y: int, button: int, modifiers: int) -> bool
14921492
14931493 modifiers:
14941494 Bitwise 'and' of all modifiers (shift, ctrl, num lock)
1495- active during this event. See :ref:`keyboard_modifiers `.
1495+ active during this event. See :ref:`pg_simple_input_keyboard_modifiers `.
14961496 """
14971497 pass
14981498
@@ -1547,7 +1547,7 @@ def on_key_press(self, symbol: int, modifiers: int) -> bool | None:
15471547 Key that was just pushed down
15481548 modifiers:
15491549 Bitwise 'and' of all modifiers (shift, ctrl, num lock) active
1550- during this event. See :ref:`keyboard_modifiers `.
1550+ during this event. See :ref:`pg_simple_input_keyboard_modifiers `.
15511551 """
15521552 return False
15531553
@@ -1570,7 +1570,7 @@ def on_key_release(self, symbol: int, modifiers: int) -> bool | None:
15701570 Key that was released
15711571 modifiers:
15721572 Bitwise 'and' of all modifiers (shift, ctrl, num lock) active
1573- during this event. See :ref:`keyboard_modifiers `.
1573+ during this event. See :ref:`pg_simple_input_keyboard_modifiers `.
15741574 """
15751575 return False
15761576
0 commit comments