From 929d9d7400e09dd3f18dd9faf329c04ff858f3ed Mon Sep 17 00:00:00 2001 From: MysterD Date: Sun, 8 May 2022 00:26:55 -0700 Subject: [PATCH] Move audio test example --- {mods => docs/lua/examples}/audio-test/main.lua | 0 .../lua/examples}/audio-test/sound/test.mp3 | Bin docs/lua/lua.md | 3 ++- 3 files changed, 2 insertions(+), 1 deletion(-) rename {mods => docs/lua/examples}/audio-test/main.lua (100%) rename {mods => docs/lua/examples}/audio-test/sound/test.mp3 (100%) diff --git a/mods/audio-test/main.lua b/docs/lua/examples/audio-test/main.lua similarity index 100% rename from mods/audio-test/main.lua rename to docs/lua/examples/audio-test/main.lua diff --git a/mods/audio-test/sound/test.mp3 b/docs/lua/examples/audio-test/sound/test.mp3 similarity index 100% rename from mods/audio-test/sound/test.mp3 rename to docs/lua/examples/audio-test/sound/test.mp3 diff --git a/docs/lua/lua.md b/docs/lua/lua.md index 3bf80ae0..722a3f14 100644 --- a/docs/lua/lua.md +++ b/docs/lua/lua.md @@ -42,7 +42,7 @@ All of this is a holdover from when there were only two players. It was a reason
## Example Lua mods (small) -- [Low Gravity](examples/mods/low-gravity.lua) +- [Low Gravity](examples/low-gravity.lua) - [Faster Swimming](../../mods/faster-swimming.lua) - [Mario Run](examples/Mario-Run.lua) - [HUD Rendering](examples/hud.lua) @@ -59,6 +59,7 @@ All of this is a holdover from when there were only two players. It was a reason - [Water Height Changer](examples/water-level.lua) - [Custom Level](examples/custom-level) - [Custom HUD Texture](examples/custom-hud-texture) +- [Custom Audio Test](examples/audio-test) ## Example Lua mods (large) - [Extended Moveset](../../mods/extended-moveset.lua)