Made with the Godot game engine to get familiar with it. Control your POV by wasd, and the mouse wheel. Setting a direction for the ball and shooting both are by the left mouse button. 

If you want to re-create my short music piece in Sonic Pi, here is the composition: 

with_synth :pluck do

  play 50, amp:1, release:3

  sleep 0.2

end

sample :bd_sone, amp: 2 # Kick drum

sleep 0.3

sample :bd_boom, amp: 3 # Kick drum

sleep 0.4

with_synth :pluck do

  play 52, amp:1, release:2

  sleep 0.2

  sample :sn_generic, amp: 1.5  # Adds snare for texture

  sleep 1

  4.times do

    play 55, amp:0.5

    sleep 0.1

  end

  sample :drum_heavy_kick

  sleep 0.5

  sample :perc_snap, rate: 0.8  # Random snap for variation

  sleep 0.5

  sample :bd_haus, amp: 0.8

  sleep 1

  play 53, amp:1

  sleep 0.2

  play 57, amp:3, release:3

  sleep 0.3

  play 49

  sleep 1

  with_synth :pluck do

    7.times do

      play 57, amp:2, release:2

      sleep 0.06

    end

    play 55

    sleep 0.07

    play 55

    sleep 0.07

    play 57

    sleep 0.07

  end

  play 50

  sleep 0.5

  sample :ambi_piano

  sample :drum_cymbal_open

  sleep 1

  sample :elec_hi_snare, amp: 1.5 # High snare for a bit of energy

  sleep 0.25

  sample :drum_cymbal_closed, amp: 1 # Closed cymbal

  sleep 0.25

  sample :bd_fat, amp: 2 # Kick drum

  sleep 0.1

  sample :bd_gas, amp: 2 # Kick drum

  sleep 0.1

  sample :bd_klub, amp: 2 # Kick drum

  sleep 0.1

end


Leave a comment

Log in with itch.io to leave a comment.