mirror of
https://github.com/bevyengine/bevy
synced 2024-11-10 07:04:33 +00:00
Fix bevy_app not compiling without default features (#13532)
# Objective Fix #13530 (just realized creating an issue was unnecessary since it's a super simple fix) ## Solution Add a cfg feature attribute ## Testing Compiles fine now
This commit is contained in:
parent
a8751390aa
commit
8684db139a
1 changed files with 1 additions and 0 deletions
|
@ -175,6 +175,7 @@ impl Default for MainScheduleOrder {
|
|||
labels: vec![
|
||||
First.intern(),
|
||||
PreUpdate.intern(),
|
||||
#[cfg(feature = "bevy_state")]
|
||||
StateTransition.intern(),
|
||||
RunFixedMainLoop.intern(),
|
||||
Update.intern(),
|
||||
|
|
Loading…
Reference in a new issue