From fd4f3ce1f715974dfc7a7d64e7333c392dae894b Mon Sep 17 00:00:00 2001 From: Mikolaj Gorski Date: Fri, 29 Mar 2024 04:24:49 +0000 Subject: [PATCH] changed the window title --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index f02bc49..265ac68 100644 --- a/src/main.rs +++ b/src/main.rs @@ -34,7 +34,7 @@ fn main() { .insert_resource(ClearColor(Color::rgb(0.4, 0.4, 0.4))) .add_plugins(DefaultPlugins.set(WindowPlugin { primary_window: Some(Window { - title: "Bevy game".to_string(), // ToDo + title: "Trouble in Terror Town: Source Crossed".to_string(), // ToDo // Bind to canvas included in `index.html` canvas: Some("#bevy".to_owned()), // Tells wasm not to override default event handling, like F5 and Ctrl+R