OnPlaybackPlayingStatusChanged
On this page
This callback allows you to receive notifications whenever the audio state of the PlaybackComponent changes.
The callback function needs to have this structure:
public delegate void IsPlayingCallback(PlaybackComponent component, bool isPlaying);
Please note, that this notification is one-shot, it is only triggered if the state of isPlaying
changes.