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")
|
.label("force_jump_listener")
|
||||||
.after("ai_step"),
|
.after("ai_step"),
|
||||||
)
|
)
|
||||||
.add_tick_system_set(
|
.add_system(
|
||||||
SystemSet::new()
|
travel
|
||||||
.with_system(ai_step.label("ai_step"))
|
.label("travel")
|
||||||
.with_system(
|
.after("ai_step")
|
||||||
travel
|
.after("force_jump_listener"),
|
||||||
.label("travel")
|
)
|
||||||
.after("ai_step")
|
.add_tick_system(ai_step.label("ai_step"));
|
||||||
.after("force_jump_listener"),
|
|
||||||
),
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue