Add helpers <pointerbutton>_down() in PointerState (#583)

This commit is contained in:
Linus Behrbohm 2021-08-15 16:41:33 +02:00 committed by GitHub
parent f4af22efb5
commit 6c18332424
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -603,6 +603,24 @@ impl PointerState {
pub(crate) fn could_any_button_be_click(&self) -> bool {
self.could_be_click
}
/// Is the primary button currently down?
#[inline(always)]
pub fn primary_down(&self) -> bool {
self.button_down(PointerButton::Primary)
}
/// Is the secondary button currently down?
#[inline(always)]
pub fn secondary_down(&self) -> bool {
self.button_down(PointerButton::Secondary)
}
/// Is the middle button currently down?
#[inline(always)]
pub fn middle_down(&self) -> bool {
self.button_down(PointerButton::Middle)
}
}
impl InputState {