INSERT GRAPHIC HERE (include hyperlink in image)
Subtitle or Short Description Goes Here
ideally one sentence >
//! ```cargo | |
//! [dependencies] | |
//! bevy = { version = "0.11", git = "https://github.com/bevyengine/bevy" } | |
//! ``` | |
use bevy::prelude::*; | |
fn main() { | |
App::new() | |
// adds a Window entity |
[package] | |
name = "bevy-style-stack" | |
version = "0.1.0" | |
edition = "2021" | |
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | |
[dependencies.bevy] | |
git = "https://github.com/bevyengine/bevy" | |
rev = "6f291a0" |
[package] | |
name = "bevy-click-handling" | |
version = "0.1.0" | |
edition = "2021" | |
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | |
[dependencies] | |
bevy = { git = "https://github.com/bevyengine/bevy", rev = "fe852fd0adbce6856f5886d66d20d62cfc936287" } |
use bevy::ecs::entity::Entities; | |
use bevy::ecs::archetype::Archetypes; | |
use bevy::ecs::component::Components; | |
fn inspect( | |
keyboard: Res<Input<KeyCode>>, | |
all_entities: Query<Entity>, | |
entities: &Entities, | |
archetypes: &Archetypes, | |
components: &Components, |
https://github.com/aseprite/aseprite/blob/master/INSTALL.md
instructions taken from above, but a complete summary specifically for windows (in the right order) is below