bevy/crates/bevy_time/src
Rich Churcher e579622a65
time_system is ambiguous_with event_update_system (#14544)
# Objective

Resolve possible ambiguity detection panic between `time_system` and
`event_update_system`.

Fixes #14524

## Solution

Sets `.ambiguous_with(event_update_system)` on `time_system`. This is
slightly new territory for me, so please treat with scepticism.

## Testing

As described in the issue, added
```
        .configure_schedules(ScheduleBuildSettings {
            ambiguity_detection: LogLevel::Error,
            ..default()
        })
```
to the `time` example and ran it.
2024-07-31 12:13:17 +00:00
..
common_conditions.rs Remove redundant imports (#12817) 2024-04-01 19:59:08 +00:00
fixed.rs Make bevy_time optionally depend on bevy_reflect (#13263) 2024-05-12 23:19:07 +00:00
lib.rs time_system is ambiguous_with event_update_system (#14544) 2024-07-31 12:13:17 +00:00
real.rs Make bevy_time optionally depend on bevy_reflect (#13263) 2024-05-12 23:19:07 +00:00
stopwatch.rs Fix minor doc typo (#13776) 2024-06-10 07:15:38 +00:00
time.rs Make bevy_time optionally depend on bevy_reflect (#13263) 2024-05-12 23:19:07 +00:00
timer.rs Adds doc note that Timer and Stopwatch must be progressed manually (#13441) 2024-05-20 19:46:25 +00:00
virt.rs Make bevy_time optionally depend on bevy_reflect (#13263) 2024-05-12 23:19:07 +00:00