bevy/crates/bevy_state/src
Phoqinu b5bfc4b464 Make StateTransitionSteps public (#16612)
# Objective

- Fixes #16594 

## Solution

- `StateTransitionSteps` was made public

## Testing

- _Did you test these changes? If so, how?_
 I am now able to import it and use it.

---

## Showcase

- Users can now write their own state scoped resources

```rust
    fn init_state_scoped_resource<R: Resource + FromWorld>(
        &mut self,
        state: impl States,
    ) -> &mut Self {
        use bevy::state::state::StateTransitionSteps; // this PR in action

        self.add_systems(
            StateTransition,
            (
                clear_state_scoped_resource_impl::<_, R>(state.clone())
                    .in_set(StateTransitionSteps::ExitSchedules), // and here
                init_state_scoped_resource_impl::<_, R>(state)
                    .in_set(StateTransitionSteps::EnterSchedules), // here too
            ),
        );

        self
    }
```
2025-01-03 19:15:53 +01:00
..
state Make StateTransitionSteps public (#16612) 2025-01-03 19:15:53 +01:00
app.rs Add core and alloc over std Lints (#15281) 2024-09-27 00:59:59 +00:00
commands.rs Rename Add to Queue for methods with deferred semantics (#15234) 2024-09-17 00:17:49 +00:00
condition.rs
lib.rs Add core and alloc over std Lints (#15281) 2024-09-27 00:59:59 +00:00
reflect.rs Add core and alloc over std Lints (#15281) 2024-09-27 00:59:59 +00:00
state_scoped_events.rs Add core and alloc over std Lints (#15281) 2024-09-27 00:59:59 +00:00
state_scoped.rs