Closed kylemiller3 closed 1 year ago
I have recreated the crash here
Add .add_plugin(EditorPlugin::default())
before .add_plugin(KayakContextPlugin).add_plugin(KayakWidgets)
use bevy::prelude::*;
use bevy_editor_pls::EditorPlugin;
use kayak_ui::{widgets::KayakWidgets, prelude::KayakContextPlugin};
fn main() {
App::new()
.add_plugins(DefaultPlugins)
.add_plugin(EditorPlugin::default())
.add_plugin(KayakContextPlugin)
.add_plugin(KayakWidgets)
.run();
}
see an example of correct working: https://gist.github.com/Yairama/7139c2ec8e183dda7b1f8077d6d1b30e
Opened up the issue there but might be a relevant issue here. Basically app crashes immediately when used with the
kayak_ui
plugin.