From 70d9dfdc48908605749e480b5e57ad9a4fd56f07 Mon Sep 17 00:00:00 2001 From: andristarr Date: Sat, 20 Apr 2024 04:15:06 +0200 Subject: [PATCH] Adding explanation for loading additonal audio formats to example (#12998) # Objective Fixes #12900 ## Solution Added comment to example indicating that additional audio formats are supported when the feature is added. --------- Co-authored-by: James Liu --- examples/audio/audio.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/examples/audio/audio.rs b/examples/audio/audio.rs index 96ebdbb19e121..5309587275873 100644 --- a/examples/audio/audio.rs +++ b/examples/audio/audio.rs @@ -1,4 +1,5 @@ //! This example illustrates how to load and play an audio file. +//! For loading additional audio formats, you can enable the corresponding feature for that audio format. use bevy::prelude::*;