This is a small 3D game that I made as a present for my brother's birthday in Godot ver. 4.5. You can play it online. The controls are WASD, Q and E for going up or down.  


Disclaimer: The art displayed on cubes is by Paul Gamble. Check out his book "Draw Horrible Pictures", which was published on May 12, 2020, by publisher Arcturus Digital Limited.

Sonic Pi commands:

use_bpm 100  # Set tempo

at [0.6, 1.8, 3] do

  sample :bd_tek, amp: 1.5

  sleep 0.2

  sample :bd_ada

end

# Define chord progression

define :play_chord_progression do

  play_chord [:c4, :e4, :g4], amp: 3

  sleep 0.9

  play_chord [:g3, :b3, :d4], amp: 4

  sleep 0.8

  play_chord [:f3, :a3, :c4], amp: 3

  sleep 0.5

  play_chord [:c4, :e4, :g4], amp: 4

  sleep 1

end

# Define percussion loop

define :play_drums do

  2.times do

    sample :drum_bass_hard, pan: 1, amp: 0.5

    sleep 0.5

    sample :drum_snare_hard, pan: -1, amp: 0.5

    sleep 0.5

  end

end

# Run chord progression in a thread

in_thread do

  play_chord_progression

end

# Run percussion in a thread

in_thread do

  2.times do  # Match the length of the chord progression

    play_drums

  end

end

# Melody line

use_synth :piano

play :c4

sleep 0.5

play :e4

sleep 0.5

play :g4

sleep 0.5

play :g4

sleep 0.5

play :a4

play :g4

sleep 0.5

play :e4

play :d4

sleep 0.5



Updated 6 days ago
Published 11 days ago
StatusReleased
PlatformsHTML5
AuthorSsss!PlusPlus
GenrePlatformer
Made withGodot, GIMP, Audacity
Code licenseMIT License
Asset licenseCreative Commons Attribution v4.0 International
Average sessionA few minutes
InputsKeyboard, Mouse

Download

Download NowName your own price

Click download now to get access to the following files:

index.apple-touch-icon.png 11 kB
index.audio.position.worklet.js 2.9 kB
index.audio.worklet.js 7.1 kB
index.icon.png 5.6 kB
index.js 298 kB
index.pck 16 MB
index.png 20 kB
index.wasm 36 MB

Leave a comment

Log in with itch.io to leave a comment.