-
-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Closed
Labels
A-WindowingPlatform-agnostic interface layer to run your app inPlatform-agnostic interface layer to run your app inC-BugAn unexpected or incorrect behaviorAn unexpected or incorrect behaviorC-UsabilityA targeted quality-of-life change that makes Bevy easier to useA targeted quality-of-life change that makes Bevy easier to use
Description
The code below demonstrates the bug. This should create a window with the title of 'test' but instead will create one with the title of 'bevy', at least on Linux. I haven't tested this on any other platform.
use bevy::prelude::*;
fn main() {
App::build()
.add_startup_system(ui_loader.system())
.add_default_plugins()
.run();
}
fn ui_loader(mut commands: Commands) {
let window = WindowDescriptor {
title: "test".to_string(),
width: 200,
height: 300,
vsync: true,
};
commands.insert_resource(window);
}
Metadata
Metadata
Assignees
Labels
A-WindowingPlatform-agnostic interface layer to run your app inPlatform-agnostic interface layer to run your app inC-BugAn unexpected or incorrect behaviorAn unexpected or incorrect behaviorC-UsabilityA targeted quality-of-life change that makes Bevy easier to useA targeted quality-of-life change that makes Bevy easier to use