Skip to content

Commit

Permalink
Merge pull request #59 from bytestring-net/dev
Browse files Browse the repository at this point in the history
Added gamepad support
  • Loading branch information
IDEDARY authored Jul 14, 2024
2 parents 4ab01f1 + 73a653f commit 88cf92a
Show file tree
Hide file tree
Showing 9 changed files with 382 additions and 100 deletions.
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

[workspace.package]
authors = ["IDEDARY"]
version = "0.2.1"
version = "0.2.2"
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/bytestring-net/bevy-lunex"
Expand All @@ -26,8 +26,8 @@

[workspace.dependencies]

bevy_lunex = { path = "crates/bevy_lunex", version = "0.2.1" }
lunex_engine = { path = "crates/lunex_engine", version = "0.2.1" }
bevy_lunex = { path = "crates/bevy_lunex", version = "0.2.2" }
lunex_engine = { path = "crates/lunex_engine", version = "0.2.2" }

colored = { version = "^2.1" }
indexmap = { version = "^2.1" }
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ For production ready example/template check out [`Bevypunk source code`](https:/

| Bevy | Bevy Lunex |
|--------|-----------------|
| 0.14.0 | 0.2.0 - 0.2.1 |
| 0.14.0 | 0.2.0 - 0.2.2 |
| 0.13.2 | 0.1.0 |
| 0.12.1 | 0.0.10 - 0.0.11 |
| 0.12.0 | 0.0.7 - 0.0.9 |
Expand Down
2 changes: 1 addition & 1 deletion crates/bevy_lunex/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ For production ready example/template check out [`Bevypunk source code`](https:/

| Bevy | Bevy Lunex |
|--------|-----------------|
| 0.14.0 | 0.2.0 - 0.2.1 |
| 0.14.0 | 0.2.0 - 0.2.2 |
| 0.13.2 | 0.1.0 |
| 0.12.1 | 0.0.10 - 0.0.11 |
| 0.12.0 | 0.0.7 - 0.0.9 |
Expand Down
2 changes: 1 addition & 1 deletion crates/bevy_lunex/src/logic/actions.rs
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ fn apply_event_hide_cursor_2d(mut events: EventReader<HideCursor2d>, mut query:
for mut cursor in &mut query {
#[cfg(feature = "verbose")]
info!("{} - Set cursor to hidden: {}", "EVENT".purple().bold(), event.0);
cursor.hidden = event.0;
cursor.visible = !event.0;
}
}
}
Expand Down
Loading

0 comments on commit 88cf92a

Please sign in to comment.