Skip to content

Commit 22cd057

Browse files
committed
fix
1 parent 95a09c5 commit 22cd057

1 file changed

Lines changed: 0 additions & 3 deletions

File tree

  • crates/bevy_animation_graph_editor/src/ui/actions

crates/bevy_animation_graph_editor/src/ui/actions/mod.rs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ use bevy::{
2121
log::error,
2222
};
2323
use event_tracks::{EventTrackAction, handle_event_track_action};
24-
use fsm::{FsmAction, handle_fsm_action};
2524
use graph::{GraphAction, handle_graph_action};
2625
use saving::{SaveAction, handle_save_action};
2726
use window::WindowAction;
@@ -62,7 +61,6 @@ pub enum EditorAction {
6261
Save(SaveAction),
6362
EventTrack(EventTrackAction),
6463
Graph(GraphAction),
65-
Fsm(FsmAction),
6664
Dynamic(Box<dyn DynamicAction>),
6765
}
6866

@@ -87,7 +85,6 @@ pub fn handle_editor_action(world: &mut World, action: EditorAction, ctx: &mut A
8785
EditorAction::Save(action) => handle_save_action(world, action),
8886
EditorAction::EventTrack(action) => handle_event_track_action(world, action),
8987
EditorAction::Graph(action) => handle_graph_action(world, action),
90-
EditorAction::Fsm(action) => handle_fsm_action(world, action),
9188
EditorAction::Dynamic(action) => action.handle(world, ctx),
9289
}
9390
}

0 commit comments

Comments
 (0)