Skip to content

Commit 832da03

Browse files
committed
N46: seldom_state: fmt fix
1 parent d0a379d commit 832da03

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

content/news/046/index.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -86,29 +86,29 @@ This month, [seldom_state] 0.6 was released:
8686

8787
- Triggers don't need to be registered!
8888
- `StateMachine::new(MachineState)` has been replaced with
89-
`StateMachine::default()`, and you must insert the initial state manually
89+
`StateMachine::default()`, and you must insert the initial state manually
9090
- `MachineState` requires `Component` now instead of `Bundle`
9191
- `MachineState` and `Trigger` no longer require `Reflect`
9292
- `StateMachine`'s
93-
`trans_builder(Trigger, Fn(&Trigger::Ok) -> Option<MyNextState>)` is now
94-
`trans_builder(Trigger, Fn(&MyCurrentState, Trigger::Ok) -> Option<MyNextState>)`,
95-
so you can take information from the current state when building the next!
93+
`trans_builder(Trigger, Fn(&Trigger::Ok) -> Option<MyNextState>)` is now
94+
`trans_builder(Trigger, Fn(&MyCurrentState, Trigger::Ok) -> Option<MyNextState>)`,
95+
so you can take information from the current state when building the next!
9696
- `StateMachine` no longer tracks the current state, so you may add and remove
97-
state components manually, as long as it's still in one state. Manual state
98-
changes won't trigger `on_enter` etc events. States that aren't used in any
99-
transitions can be registered manually with `StateMachine::with_state`, else it
100-
will think it isn't in a state and panic.
97+
state components manually, as long as it's still in one state. Manual state
98+
changes won't trigger `on_enter` etc events. States that aren't used in any
99+
transitions can be registered manually with `StateMachine::with_state`, else it
100+
will think it isn't in a state and panic.
101101
- Replaced `StateMachine`'s `insert_on_enter(Bundle)` and `remove_on_exit()`
102-
with the more versatile `on_enter(Fn(&mut EntityCommands))`,
103-
`on_exit(Fn(&mut EntityCommands))`, `command_on_enter(Command)`, and
104-
`command_on_exit(Command)`
102+
with the more versatile `on_enter(Fn(&mut EntityCommands))`,
103+
`on_exit(Fn(&mut EntityCommands))`, `command_on_enter(Command)`, and
104+
`command_on_exit(Command)`
105105
- `Trigger`s may be combined with combinators `not`, `and`, and `or`
106106
- Transitions have priority in the order they are added
107107
- `Trigger::trigger` accepts `ReadOnlySystemParam` instead of `&SystemParam`, so
108-
you can use `EventReader`, `Local`, etc in your triggers!
108+
you can use `EventReader`, `Local`, etc in your triggers!
109109
- Added an `EventTrigger<E>` that triggers on an event
110110
- `StateMachine::set_trans_logging` sets whether to log state transitions for
111-
debugging
111+
debugging.
112112

113113
Thanks to [Sera] for coauthoring this update!
114114

0 commit comments

Comments
 (0)