Merge branch 'main' into bevy-0.12

This commit is contained in:
Nolan Darilek 2024-03-14 13:39:29 -05:00
commit 764ab980bd

View File

@ -400,7 +400,7 @@ impl Plugin for PathfindingPlugin {
.register_type::<NoPath>()
.register_type::<Path>()
.register_type::<CostMap>()
.add_systems(PreUpdate, (negotiate_path, poll_tasks))
.add_systems(PreUpdate, (poll_tasks, negotiate_path).chain())
.add_systems(
PreUpdate,
(actions, calculate_path)