I’m trying to craft a bass sound similar to the one in this song. Some people refer to it as a “donk bass” or “hard bass.” Despite experimenting with various configurations, I haven’t quite nailed the characteristic sound. Are there any resources or guidance that could help me achieve this?
Here are some of my current approaches, with input from an AI assistant:
Attempt 1: Using :dsaw
live_loop :donk_pattern do
use_synth :dsaw
play 50, release: 1, attack: 0, cutoff: 70, detune: 0.1
sleep 1
end
Attempt 2: Using :tb303
live_loop :donk_bass do
use_synth :tb303 # Classic acid bass synth
use_synth_defaults release: 0.2,
cutoff: 80,
res: 0.7,
env_curve: 7,
attack: 0.01
play 40
sleep 1
end
Feedback and Guidance
I feel like I’m missing some key elements to recreate the punchy, bouncy character of a proper donk bass. Any advice, tips, or resources to help me refine this would be greatly appreciated!