The stagger parameter gets overwritten by the startDelay when used in this order: ``` AdditiveAnimator.anime(views, 50) .setStartDelay(300) .yBy(100) .start() ``` `setStartDelay` should just add to the initial stagger, not overwrite it.