-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add basic scene and controls #2
Conversation
Closes #1 |
** Behavioral change: Introduce a single world screen with a player square. Enable WASD keyboard control of player. Issues: [#1]
beeee04
to
d0aa9e2
Compare
Did a force push as I stupidly forgot to run the formatter. |
It looks like there's an implicit dependency on either precompiled
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
bevy = { version = "0.5.0", features = ["dynamic"] } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
How about adding a build dependency (not so sure about the exact version, just added mine)?
[build-dependencies]
cmake = 3.21.2
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please, check the suggestion for Cargo.toml
** No behavioral change intended Issues: [#1]
As discussed elsewhere, this seems to be an issue in Bevy. Added a note suggesting the installation of cmake or the Vulkan SDK |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you, everything looks great :)
** Behavioral change: Introduce a single world screen with a player
square. Enable WASD keyboard control of player.
Issues: [#1]