1 2 3 4 5 6 7 8 9 10
use bevy::prelude::*; use bevy_animation_graph_editor::AnimationGraphEditorPlugin; fn main() { let mut app = App::new(); app.add_plugins(AnimationGraphEditorPlugin); app.run(); }