From be3be138dc00b327bcab4c3e424c2e979f7f3c76 Mon Sep 17 00:00:00 2001 From: Phoqinu <176324086+Phoqinu@users.noreply.github.com> Date: Mon, 2 Dec 2024 19:02:45 +0100 Subject: [PATCH] Make `StateTransitionSteps` public --- crates/bevy_state/src/state/transitions.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/bevy_state/src/state/transitions.rs b/crates/bevy_state/src/state/transitions.rs index f1af3570ceb56..4c4311a9d53a7 100644 --- a/crates/bevy_state/src/state/transitions.rs +++ b/crates/bevy_state/src/state/transitions.rs @@ -68,7 +68,7 @@ pub struct StateTransitionEvent { /// /// These system sets are run sequentially, in the order of the enum variants. #[derive(SystemSet, Clone, Debug, PartialEq, Eq, Hash)] -pub(crate) enum StateTransitionSteps { +pub enum StateTransitionSteps { /// States apply their transitions from [`NextState`](super::NextState) /// and compute functions based on their parent states. DependentTransitions,