How to change a bus's volume from code? #313
Answered
by
CedNaru
robinhoodk17
asked this question in
Q&A
-
|
Hi, everyone! I'm interested in modifying the volume of an FMod bus from code in Godot. I know that you can modify other buses' parameters from an event in Fmod, but how would you do it without having to call an FMod event? |
Beta Was this translation helpful? Give feedback.
Answered by
CedNaru
Feb 15, 2025
Replies: 1 comment
-
|
You can use the method |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
robinhoodk17
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can use the method
var bus = FmodServer.get_bus("path")It should return a FmodBus, which you can use to directly control its sound
bus.set_volume(x).