My present to you
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 |
Status | Released |
Platforms | HTML5 |
Author | Ssss!PlusPlus |
Genre | Platformer |
Made with | Godot, GIMP, Audacity |
Code license | MIT License |
Asset license | Creative Commons Attribution v4.0 International |
Average session | A few minutes |
Inputs | Keyboard, Mouse |
Download
Click download now to get access to the following files:
Leave a comment
Log in with itch.io to leave a comment.