1
- use bevy_app:: App ;
1
+ use bevy_app:: { App , Update } ;
2
2
use bevy_ecs:: prelude:: * ;
3
3
use criterion:: Criterion ;
4
4
@@ -72,7 +72,7 @@ pub fn build_schedule(criterion: &mut Criterion) {
72
72
group. measurement_time ( std:: time:: Duration :: from_secs ( 15 ) ) ;
73
73
74
74
// Method: generate a set of `graph_size` systems which have a One True Ordering.
75
- // Add system to the schedule with full constraints. Hopefully this should be maximimally
75
+ // Add system to the schedule with full constraints. Hopefully this should be maximally
76
76
// difficult for bevy to figure out.
77
77
let labels: Vec < _ > = ( 0 ..1000 ) . map ( |i| NumSet ( i) ) . collect ( ) ;
78
78
@@ -83,7 +83,7 @@ pub fn build_schedule(criterion: &mut Criterion) {
83
83
bencher. iter ( || {
84
84
let mut app = App :: new ( ) ;
85
85
for _ in 0 ..graph_size {
86
- app. add_system ( empty_system) ;
86
+ app. add_systems ( Update , empty_system) ;
87
87
}
88
88
app. update ( ) ;
89
89
} ) ;
@@ -93,7 +93,7 @@ pub fn build_schedule(criterion: &mut Criterion) {
93
93
group. bench_function ( format ! ( "{graph_size}_schedule" ) , |bencher| {
94
94
bencher. iter ( || {
95
95
let mut app = App :: new ( ) ;
96
- app. add_system ( empty_system. in_set ( DummySet ) ) ;
96
+ app. add_systems ( Update , empty_system. in_set ( DummySet ) ) ;
97
97
98
98
// Build a fully-connected dependency graph describing the One True Ordering.
99
99
// Not particularly realistic but this can be refined later.
@@ -105,7 +105,7 @@ pub fn build_schedule(criterion: &mut Criterion) {
105
105
for label in & labels[ i + 1 ..graph_size] {
106
106
sys = sys. before ( * label) ;
107
107
}
108
- app. add_system ( sys) ;
108
+ app. add_systems ( Update , sys) ;
109
109
}
110
110
// Run the app for a single frame.
111
111
// This is necessary since dependency resolution does not occur until the game runs.
0 commit comments