bevy tutorial
All checks were successful
Build Bevy Game (Linux) / build (push) Successful in 19m42s

This commit is contained in:
Crizomb 2025-12-25 18:36:19 +01:00
parent 08feecf5bf
commit 1d5ef2006a
2 changed files with 46 additions and 3 deletions

View file

@ -1,6 +1,49 @@
use bevy::prelude::*;
fn main() {
App::new().run();
println!("Hello, bevy!");
println!("4GB VM Ram");
App::new()
.insert_resource(GreetTimer(Timer::from_seconds(2.0, TimerMode::Repeating)))
.add_plugins(DefaultPlugins)
.add_plugins(HelloPlugin)
.run();
}
#[derive(Component)]
struct Person;
#[derive(Component)]
struct Name(String);
fn add_people(mut commands: Commands) {
commands.spawn((Person, Name("Elaina Proctor".to_string())));
commands.spawn((Person, Name("Renzo Hume".to_string())));
commands.spawn((Person, Name("Zayna Nieves".to_string())));
}
fn greet_people(time: Res<Time>, mut timer: ResMut<GreetTimer>, query: Query<&Name, With<Person>>) {
if timer.0.tick(time.delta()).just_finished() {
for name in &query {
println!("hello {}!", name.0);
}
}
}
fn update_people(mut query: Query<&mut Name, With<Person>>) {
for mut name in &mut query {
if name.0 == "Elaina Proctor" {
name.0 = "Elaina Hume".to_string();
break; // We don't need to change any other names.
}
}
}
#[derive(Resource)]
struct GreetTimer(Timer);
pub struct HelloPlugin;
impl Plugin for HelloPlugin {
fn build(&self, app: &mut App) {
app.add_systems(Startup, add_people);
app.add_systems(Update, (update_people, greet_people).chain());
}
}