From 24babbdbe5b54fec277b48833cf8fec9928ca873 Mon Sep 17 00:00:00 2001 From: mat Date: Fri, 21 Feb 2025 20:17:47 +0000 Subject: GameTick should only happen after Update --- azalea-core/src/tick.rs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'azalea-core/src') diff --git a/azalea-core/src/tick.rs b/azalea-core/src/tick.rs index c6f02c12..09b45be4 100644 --- a/azalea-core/src/tick.rs +++ b/azalea-core/src/tick.rs @@ -4,5 +4,7 @@ use bevy_ecs::schedule::ScheduleLabel; /// /// Many client systems run on this schedule, the most important one being /// physics. +/// +/// This schedule runs either zero or one times after every Bevy `Update`. #[derive(ScheduleLabel, Hash, Copy, Clone, Debug, Default, Eq, PartialEq)] pub struct GameTick; -- cgit v1.2.3