Use alt modifier instead of cmd to add selections

This commit is contained in:
Nathan Sobo 2021-11-23 16:23:30 -07:00
parent 9e651ee127
commit 73afb29b04
4 changed files with 12 additions and 5 deletions

View file

@ -14,8 +14,10 @@ pub enum Event {
},
LeftMouseDown {
position: Vector2F,
cmd: bool,
ctrl: bool,
alt: bool,
shift: bool,
cmd: bool,
click_count: usize,
},
LeftMouseUp {