Why is first beat loudest?

I’m just trying to get some levels right, and even after tweaking the amp my first sample is only as loud as I want it on the first beat.

Is this just me, or is there a reason, and is there a way to correct?

Currently on ASIO

in_thread(name: :drums) do
  
  live_loop :kick do
    sample :elec_hollow_kick, amp: 2 #same issue without amp set
    sleep 1
  end
  
  live_loop :snare, delay: 0.5 do
    sample :sn_dolf
    sleep 1
  end
end

Update Noticed my volume was only at around 12% , ramped up and can’t notice the issue now, just need to make sample 1 a little louder (or 2 quieter)

:white_check_mark:

in_thread(name: :drums) do
  
  live_loop :kick do
    sample :elec_hollow_kick
    sleep 1
  end
  
  live_loop :snare, delay: 0.5 do
    sample :sn_dolf, amp: 0.1
    sleep 1
  end
end

Thanks!!