Posted August 07, 2025 by RodZilla
This 82th Godot Wild Jam was my fourth with Tilca, our composer and sound designer, and I must admit we progressed a lot on the audio side since Celestial Settlers.
In our first gamejam projects, we just did things in the most natural way when using Godot: add AudioStreamPlayer3Ds wherever sound had to happen. But this makes it necessary for the sound designer, either to navigate the whole project to add sounds and tweak volumes, or to team up with a developer (or the developper, in a small gamejam team) for doing so.
Starting with Lord of the Rum, I wrote a few scripts that make it possible to:
At that point we had a working solution and used it as is for Little Shadow. But the number of sounds increased significantly, and we decided that organizing sounds in a tree structure would be a lot more convenient.
So I rewrote the user interface so sounds can be declared in a tree view and configured easily (bus, volume, pitch shift, volume randomness, attenuation parameters) by the sound designer. All this in a new panel named TRAudio (Tilca and Rod's Audio plugin).
And on the developer's side, quite a few ways of playing sounds by name are available:
So this is what we used in Little Shadow and Delicious Neighbors, and now we saved a lot of time using all this, it's time for us to share. You will find the TRAudio add-on for Godot on Github, under the MIT License. Please don't hesitate to contact us if you need help using it (it's the very first version, and documentation is probably not as complete as it could).