Tweens - control Bounce.easeOut

Hi
I am using Tweens with Bounce.easeOut
The result is too jumping at the end, I think because the target large height (?)

How do I control the Bounce.easeOut behavior?
I would like the target to make 2 or 3 short jumps and stop.

I tried easeParams - set different values, but it did not change the bounce behavior.

scene.tweens.add({
    targets: container,
    y: '+=600',
    duration: 2000,
    ease: 'Bounce.easeOut',     
    easeParams: [],   
  });

Thanks for any help. alon

Bounce.easeOut does not take any parameters. You have to make your own easing function.