public override void Interrupt(FluentNode fluentNode)
        {
            GameObject fluentPlayer = SoundPlayers.Find(x => x.GetComponent <SoundPlayer>().soundNode == fluentNode);

            SoundPlayer sp = fluentPlayer.GetComponent <SoundPlayer>();

            sp.StopPlaying();
            FinishSoundPlayer(sp);
        }