bevy_animation_graph_editor 0.10.0

Animation graph editor for the Bevy game engine
Documentation
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();
}