Fix just pressed
This commit is contained in:
parent
15c97f12e9
commit
130ddd8117
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "bevy_terminal_display"
|
name = "bevy_terminal_display"
|
||||||
version = "0.4.0"
|
version = "0.4.1"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "0BSD OR MIT OR Apache-2.0"
|
license = "0BSD OR MIT OR Apache-2.0"
|
||||||
description = "A plugin for the Bevy game engine which enables rendering to a terminal using unicode braille characters."
|
description = "A plugin for the Bevy game engine which enables rendering to a terminal using unicode braille characters."
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
use bevy::{prelude:: *, utils::HashSet};
|
use bevy::{prelude::*, utils::HashSet};
|
||||||
use crossterm::event::{Event, KeyCode};
|
use crossterm::event::{Event, KeyCode};
|
||||||
use std::sync::{Arc, Mutex};
|
use std::sync::{Arc, Mutex};
|
||||||
|
|
||||||
@ -28,9 +28,11 @@ impl TerminalInput {
|
|||||||
|
|
||||||
/// Sets given key to pressed
|
/// Sets given key to pressed
|
||||||
pub(super) fn press(&mut self, code: KeyCode) {
|
pub(super) fn press(&mut self, code: KeyCode) {
|
||||||
|
if !self.pressed_keys.contains(&code) {
|
||||||
self.pressed_keys.insert(code);
|
self.pressed_keys.insert(code);
|
||||||
self.just_pressed_keys.insert(code);
|
self.just_pressed_keys.insert(code);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/// Sets given key to released and removes pressed state
|
/// Sets given key to released and removes pressed state
|
||||||
pub(super) fn release(&mut self, code: KeyCode) {
|
pub(super) fn release(&mut self, code: KeyCode) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user