doonv / bevy_dev_console

Source-inspired developer console plugin for the Bevy game engine.
Apache License 2.0
112 stars 10 forks source link

Pressing shift causes mouse scrolling to not work #1

Closed doonv closed 6 months ago

doonv commented 9 months ago

Pressing/Tapping the Shift key causes mouse-wheel scrolling to not work.

Causes

  1. Pressing the Shift key causes Bevy's input system to think the key is still pressed even after releasing this, this will be fixed by https://github.com/bevyengine/bevy/pull/10702. When Bevy 0.13 releases.
  2. Holding the Shift key causes egui to turn the vertical scroll into a horizontal scroll, but since the console window cannot scroll, it does nothing. (https://github.com/emilk/egui/issues/3624). When bevy_egui updates to a version of egui that includes this PR.