mirror of
https://github.com/mat-1/azalea.git
synced 2025-08-02 14:26:04 +00:00
fix jumping
This commit is contained in:
parent
d3af7ba7a9
commit
54a2eb9c95
1 changed files with 7 additions and 10 deletions
|
@ -32,16 +32,13 @@ impl Plugin for PhysicsPlugin {
|
|||
.label("force_jump_listener")
|
||||
.after("ai_step"),
|
||||
)
|
||||
.add_tick_system_set(
|
||||
SystemSet::new()
|
||||
.with_system(ai_step.label("ai_step"))
|
||||
.with_system(
|
||||
travel
|
||||
.label("travel")
|
||||
.after("ai_step")
|
||||
.after("force_jump_listener"),
|
||||
),
|
||||
);
|
||||
.add_system(
|
||||
travel
|
||||
.label("travel")
|
||||
.after("ai_step")
|
||||
.after("force_jump_listener"),
|
||||
)
|
||||
.add_tick_system(ai_step.label("ai_step"));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue