mirror of
https://github.com/bevyengine/bevy
synced 2025-02-16 22:18: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![
|
labels: vec![
|
||||||
First.intern(),
|
First.intern(),
|
||||||
PreUpdate.intern(),
|
PreUpdate.intern(),
|
||||||
|
#[cfg(feature = "bevy_state")]
|
||||||
StateTransition.intern(),
|
StateTransition.intern(),
|
||||||
RunFixedMainLoop.intern(),
|
RunFixedMainLoop.intern(),
|
||||||
Update.intern(),
|
Update.intern(),
|
||||||
|
|
Loading…
Add table
Reference in a new issue