Function sync_playback_text
Source pub fn sync_playback_text(
commands: Commands<'_, '_>,
playback: Res<'_, PlaybackState>,
title_texts: Query<'_, '_, &mut Text, (With<PlaybackTitleText>, Without<PlaybackFrameText>, Without<PlaybackSpeedText>, Without<PlaybackPlayPauseIcon>)>,
frame_texts: Query<'_, '_, &mut Text, (With<PlaybackFrameText>, Without<PlaybackTitleText>, Without<PlaybackSpeedText>, Without<PlaybackPlayPauseIcon>)>,
speed_texts: Query<'_, '_, &mut Text, (With<PlaybackSpeedText>, Without<PlaybackTitleText>, Without<PlaybackFrameText>, Without<PlaybackPlayPauseIcon>)>,
play_pause_icons: Query<'_, '_, &mut Text, (With<PlaybackPlayPauseIcon>, Without<PlaybackTitleText>, Without<PlaybackFrameText>, Without<PlaybackSpeedText>)>,
scrubber_fill: Query<'_, '_, &mut Node, (With<PlaybackScrubberFill>, Without<PlaybackScrubberThumb>)>,
scrubber_thumb: Query<'_, '_, &mut Node, (With<PlaybackScrubberThumb>, Without<PlaybackScrubberFill>)>,
slider: Query<'_, '_, (Entity, &SliderValue, &SliderRange, &Hovered, &CoreSliderDragState), With<PlaybackScrubberButton>>,
button_children: Query<'_, '_, &Children>,
button_texts: Query<'_, '_, &mut Text, (Without<PlaybackTitleText>, Without<PlaybackFrameText>, Without<PlaybackSpeedText>, Without<PlaybackPlayPauseIcon>)>,
play_buttons: Query<'_, '_, (Entity, &Interaction, &mut BackgroundColor), (With<Button>, With<PlaybackPlayPauseButton>)>,
speed_buttons: Query<'_, '_, (Entity, &PlaybackSpeedButton, &Interaction, &mut BackgroundColor), (With<Button>, Without<PlaybackPlayPauseButton>)>,
)