@@ -53,7 +53,6 @@ fn track_previous<T: ComponentId + Copy + Debug + PartialEq>(world: &World) {
5353
5454 world
5555 . system_named :: < ( & mut ( Prev , T ) , & T ) > ( system_name. as_str ( ) )
56- . multi_threaded ( )
5756 . kind_id ( post_store)
5857 . each ( |( prev, value) | {
5958 * prev = * value;
@@ -71,7 +70,6 @@ impl Module for EntityStateSyncModule {
7170 ) > ( "entity_xp_sync" )
7271 . term_at ( 0u32 )
7372 . singleton ( )
74- . multi_threaded ( )
7573 . kind :: < flecs:: pipeline:: OnStore > ( )
7674 . each_iter ( |table, idx, ( compose, net, prev_xp, current) | {
7775 const {
@@ -99,7 +97,6 @@ impl Module for EntityStateSyncModule {
9997 } ) ;
10098
10199 system ! ( "entity_metadata_sync" , world, & Compose ( $) , & mut MetadataChanges )
102- . multi_threaded ( )
103100 . kind :: < flecs:: pipeline:: OnStore > ( )
104101 . each_iter ( move |it, row, ( compose, metadata_changes) | {
105102 let system = it. system ( ) ;
@@ -135,7 +132,6 @@ impl Module for EntityStateSyncModule {
135132 ?& ConnectionId ,
136133 & mut ActiveAnimation ,
137134 )
138- . multi_threaded ( )
139135 . kind :: < flecs:: pipeline:: OnStore > ( )
140136 . each_iter (
141137 move |it, row, ( position, compose, connection_id, animation) | {
@@ -177,7 +173,6 @@ impl Module for EntityStateSyncModule {
177173 & mut MovementTracking ,
178174 & Flight ,
179175 )
180- . multi_threaded ( )
181176 . kind :: < flecs:: pipeline:: PreStore > ( )
182177 . each_iter (
183178 |it,
@@ -368,7 +363,6 @@ impl Module for EntityStateSyncModule {
368363 & Owner ,
369364 ?& ConnectionId
370365 )
371- . multi_threaded ( )
372366 . kind :: < flecs:: pipeline:: OnUpdate > ( )
373367 . with_enum_wildcard :: < EntityKind > ( )
374368 . each_iter ( |it, row, ( position, velocity, owner, connection_id) | {
0 commit comments