Bfxr to Godot 2D Platformer

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By JustANewb

Can anyone help me input bfxr sound files ( either .wav or .bfxrsound ) into Godot and how to use them???

:bust_in_silhouette: Reply From: kidscancode

Godot will not use .bfxrsound files but .wav files are fine. Drop them in your project and they’ll be imported.

To use a sound file, you need to use an AudioStreamPlayer node. Drop your sound file in the “Stream” property and call play() on it in your game to play the sound.

Example here: