From 71767df08898525de4493e916b258643a261c81b Mon Sep 17 00:00:00 2001 From: Ben H Date: Sat, 30 Mar 2024 23:34:51 -0400 Subject: [PATCH] doc tweaks --- .../BenMakesGames.PlayPlayMini.NAudio.csproj | 2 +- BenMakesGames.PlayPlayMini.NAudio/README.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/BenMakesGames.PlayPlayMini.NAudio/BenMakesGames.PlayPlayMini.NAudio.csproj b/BenMakesGames.PlayPlayMini.NAudio/BenMakesGames.PlayPlayMini.NAudio.csproj index 7c95310..4fce43f 100644 --- a/BenMakesGames.PlayPlayMini.NAudio/BenMakesGames.PlayPlayMini.NAudio.csproj +++ b/BenMakesGames.PlayPlayMini.NAudio/BenMakesGames.PlayPlayMini.NAudio.csproj @@ -3,7 +3,7 @@ Ben Hendel-Doying Ben Hendel-Doying - Get seamless looping music in your MonoGame-PlayPlayMini game using NAudio. + Get seamless looping music, and cross-fade, in your MonoGame-PlayPlayMini game using NAudio. 2024 Ben Hendel-Doying 0.1.0 diff --git a/BenMakesGames.PlayPlayMini.NAudio/README.md b/BenMakesGames.PlayPlayMini.NAudio/README.md index 6f1a194..0af3ed7 100644 --- a/BenMakesGames.PlayPlayMini.NAudio/README.md +++ b/BenMakesGames.PlayPlayMini.NAudio/README.md @@ -31,7 +31,7 @@ Seamlessy-looping music is important for many games, but MonoGame's built-in mus `.mp3`, `.aiff`, and `.wav` files are supported out of the box. For other formats, you will need to install additional NAudio packages and do a little extra configuration: -#### `.ogg` +#### Add Ogg Vorbis (`.ogg`) Support Add the `NAudio.Vorbis` package to your project. @@ -41,7 +41,7 @@ In your game's `.AddServices(...)` configuration, add the following line: s.RegisterInstance(new NAudioFileLoader("ogg", f => new VorbisWaveReader(f))); ``` -#### `.flac` +#### Add FLAC (`.flac`) Support Add the `NAudio.Flac` package to your project.