-
-
Notifications
You must be signed in to change notification settings - Fork 4.5k
Bevy 0.10 regression: very long startup if WinitSettings.unfocused_mode is set to UpdateMode::Reactive #7974
Copy link
Copy link
Open
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 behaviorO-LinuxSpecific to the Linux desktop operating systemSpecific to the Linux desktop operating systemP-RegressionFunctionality that used to work but no longer does. Add a test for this!Functionality that used to work but no longer does. Add a test for this!
Description
Bevy version
The release number or commit hash of the version you're using.
0.10/0.11/0.12/0.13
Relevant system information
Arch Linux
What you did
Running https://github.com/JayceFayne/bevy_regression
Pasting main.rs below:
use bevy::prelude::*;
use bevy::winit::WinitSettings;
fn main() {
App::new()
.insert_resource(WinitSettings::desktop_app())
.add_plugins(DefaultPlugins.build())
.run();
}
What went wrong
Takes very long to start
Additional information
Downgrading to 0.9 fixes the issue
Reactions are currently unavailable
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 behaviorO-LinuxSpecific to the Linux desktop operating systemSpecific to the Linux desktop operating systemP-RegressionFunctionality that used to work but no longer does. Add a test for this!Functionality that used to work but no longer does. Add a test for this!