GodotBeginnerRich Above. I still haven't created any working original projects yet, in ANY version of Godot, despite owning several tutorial books. If I ever do though, is there a simple way to add custom original music/sound effects to the levels?
GlyphTheWolf Hi, You can add any music/sound effects you want (of course if you have rights to use them in your project). You just need to import your tracks/sound effects similar to any other resources and use them somewhere in your game with audio stream players.
DaveTheCoder Use an AudioStreamPlayer node. To play audio positionally, use AudioStreamPlayer2D or AudioStreamPlayer3D instead of AudioStreamPlayer. https://docs.godotengine.org/en/4.0/classes/class_audiostreamplayer.html Add the sound file to the node by dragging it from the FileSystem dock into the Stream property in the Inspector dock. You can also add the sound file from code. Example: var music: AudioStreamPlayer = $AudioStreamPlayer music.stream = load("res://assets/sound/example.mp3")