You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Clicking the "move point 1" or "move point 2" or the "move box" buttons whilst applying keyboard input (WASD or space or shift) for the desired direction doesn't result in any movement.
Expected behavior:
The selection (point) should be moved according to the keyboard input while holding down the corresponding button with left mouse button.
Steps To Reproduce:
Open a world in Amulet
Select some area by left clicking
Click one of the 3 Buttons (see attached screenshot) whilst applying keyboard input in any of the WASD or up (space) or down (Shift) direction
See that selection bounding box is not moved.
Environment:
OS: OSX 14.4.1 Sonoma on Apple M1 Pro Chip (Silicon)
Minecraft Platform: Java
Minecraft Version: 1.20.6
Amulet Version: 0.10.29 with python version 3.11.9
Additional context
Adding debug println statements in _on_held of nudge_button.py shows that evt.action_ids doesn't contain the keypresses, but only ACT_BOX_CLICK.
Those keypresses should be contained in evt.action_ids of _on_held of nudge_button.py so that the
ifany((x, y, z)):
print("any xyz")
self._move(self._rotate((x, y, z)))
portion of the code is called and (presumably) the points are actually moved.
Attachments
Screenshots
Worlds
The text was updated successfully, but these errors were encountered:
Bug Report
Current Behaviour:
Clicking the "move point 1" or "move point 2" or the "move box" buttons whilst applying keyboard input (WASD or space or shift) for the desired direction doesn't result in any movement.
Expected behavior:
The selection (point) should be moved according to the keyboard input while holding down the corresponding button with left mouse button.
Steps To Reproduce:
Environment:
Additional context
Adding debug println statements in
_on_held
ofnudge_button.py
shows thatevt.action_ids
doesn't contain the keypresses, but only ACT_BOX_CLICK.Those keypresses should be contained in
evt.action_ids
of_on_held
ofnudge_button.py
so that theportion of the code is called and (presumably) the points are actually moved.
Attachments
Screenshots
Worlds
The text was updated successfully, but these errors were encountered: