Add serialize/deserialize to some input types (#281)

This commit is contained in:
TehPers 2020-08-21 18:13:50 -07:00 committed by GitHub
parent 20335d5643
commit 7a79dcc46c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 9 additions and 0 deletions

View file

@ -27,6 +27,8 @@ flac = ["bevy_audio/flac"]
wav = ["bevy_audio/wav"]
vorbis = ["bevy_audio/vorbis"]
serialize = ["bevy_input/serialize"]
[workspace]
members = [
"crates/*",

View file

@ -9,7 +9,12 @@ repository = "https://github.com/bevyengine/bevy"
license = "MIT"
keywords = ["bevy"]
[features]
default = []
serialize = ["serde"]
[dependencies]
bevy_app = { path = "../bevy_app", version = "0.1" }
bevy_ecs = { path = "../bevy_ecs", version = "0.1" }
bevy_math = { path = "../bevy_math", version = "0.1" }
serde = { version = "1", features = ["derive"], optional = true }

View file

@ -56,6 +56,7 @@ pub fn keyboard_input_system(
/// The key code of a keyboard input.
#[derive(Debug, Hash, Ord, PartialOrd, PartialEq, Eq, Clone, Copy)]
#[cfg_attr(feature = "serialize", derive(serde::Serialize, serde::Deserialize))]
#[repr(u32)]
pub enum KeyCode {
/// The '1' key over the letters.

View file

@ -13,6 +13,7 @@ pub struct MouseButtonInput {
/// A button on a mouse device
#[derive(Debug, Hash, PartialEq, Eq, Clone, Copy)]
#[cfg_attr(feature = "serialize", derive(serde::Serialize, serde::Deserialize))]
pub enum MouseButton {
Left,
Right,