I have a method which is called on button tap which fades audio volume and mutes when completes:
MusicBox.musicAudioSource.DOFade(0.0f, 1.0f).OnComplete(() => { MusicBox.musicAudioSource.mute = true; });
If I tap on button quicker than 1 second than OnComplete() doesn't call. What callback I should use for those cases?