-
-
Notifications
You must be signed in to change notification settings - Fork 3.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update audio streams page for Godot 4.3 #9522
Conversation
Thank you so much! I'll review it asap. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, I'll leave time for Adam to also review :) Great work!
gentle reminder poke @adamscott |
@mhilbrunner Thanks for the poke. It was needed indeed. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Other than my small nitpicks, it seems fine! Thanks!
tutorials/audio/audio_streams.rst
Outdated
Playback Type is an experimental setting, and could change in future versions | ||
of Godot. It exists so web exports use samples for audio instead of streams, | ||
this prevents the audio from being garbled in single threaded web exports. By | ||
default only the web platform will use samples, changing this is not recommended | ||
unless you have an explicit reason to. You can change the default playback type | ||
for the web and other platforms in the project settings under **Audio > General** | ||
(advanced settings must be turned on to see the setting). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Playback Type is an experimental setting, and could change in future versions | |
of Godot. It exists so web exports use samples for audio instead of streams, | |
this prevents the audio from being garbled in single threaded web exports. By | |
default only the web platform will use samples, changing this is not recommended | |
unless you have an explicit reason to. You can change the default playback type | |
for the web and other platforms in the project settings under **Audio > General** | |
(advanced settings must be turned on to see the setting). | |
Playback Type is an experimental setting, and could change in future versions | |
of Godot. It exists so Web exports use Web Audio-API based samples instead of streaming all sounds to the browser, unlike most platforms. | |
This prevents the audio from being garbled in single-threaded Web exports. By | |
default, only the Web platform will use samples. Changing this setting is not recommended, unless you have an explicit reason to. You can change the default playback type | |
for the web and other platforms in the project settings under **Audio > General** | |
(advanced settings must be turned on to see the setting). |
Thank you, merged, and thanks Adam for the review! |
Documents the new Playback Type property in audio streams (Added in this PR). I've also updated every image on the page for Godot 4.3.