/// <summary>
    /// Play the AudioElement.
    /// To simply trigger the clip without snapping it to a beat, call Play() or Play(fadeLength) - where fadeLength is the fade in time
    /// </summary>

    public override void Play()
    {
        Play(0f, FadeType.Lin, 1f, clips.GetClip(), false);
    }