diff --git a/README.md b/README.md index 4630660..0e313c0 100644 --- a/README.md +++ b/README.md @@ -10,6 +10,7 @@ This project contains samples that further extend the [Minecraft: Bedrock Editio * [Custom Blocks](custom_blocks/README.md) - Behavior Pack and Resource pack that accompanies the custom block tutorials, starting with [Custom Blocks Part 1: The Simplest Block](https://docs.microsoft.com/minecraft/creator/documents/addcustomdieblock) * [Features Samples](https://github.com/microsoft/minecraft-samples/blob/main/FeaturesSamples.mcaddon) - A sample pack that can be used as a tutorial on how feature and feature rules work. * [Custom Items](custom_items/README.md) + * [Custom Sounds](custom_sounds/README.md) * [Minecraft Live 2022 Add-Ons](mclive2022_addon) - Behavior Pack and Resource Pack that accompany the [Minecraft Live 2022 Creator Recap](https://docs.microsoft.com/minecraft/creator/documents/minecraftlive2022creatorrecap) * [NPC Dialog Sample](npc_dialogue_sample/README.md) - See the [NPC Dialogue](https://docs.microsoft.com/minecraft/creator/documents/NPCDialogue) documentation for the full walkthrough adding custom dialogue for an NPC * [Parkour Sample World](parkour_sample_world/README.md) - This sample is the world that is walked through in the [Parkour documentation](https://docs.microsoft.com/minecraft/creator/documents/ParkourIntro) as examples of block mechanics, player mechanics, and Redstone mechanics that can be used to make a fun player experience diff --git a/custom_sounds/README.md b/custom_sounds/README.md new file mode 100644 index 0000000..b5a58f5 --- /dev/null +++ b/custom_sounds/README.md @@ -0,0 +1,35 @@ +--- +page_type: sample +author: mammerla +description: A basic collection of custom Minecraft items. +ms.author: mikeam@microsoft.com +ms.date: 04/01/2022 +languages: + - typescript +products: + - minecraft +--- + +# Minecraft Custom Sounds Files + +This folder contains sample sound files for use in custom sound packs for Minecraft. + +## Prerequisites + +None. + +Sound files were created using Audacity, but can be created by any sound recording software that supports exporting sound files in the .OGG or .FSB format. + +Visit the [Audacity website](https://www.audacityteam.org/download/) to install Audacity. + +**It is recommended to install Visual Studio Code, if you haven't already** + +Visit the [Visual Studio Code website](https://code.visualstudio.com) and install Visual Studio Code. + +### Summary + + + +## Manifest + +- [chestopen.ogg](): This file is a sample sound for a chest opening. diff --git a/custom_sounds/chestopen.ogg b/custom_sounds/chestopen.ogg new file mode 100644 index 0000000..07e1c99 Binary files /dev/null and b/custom_sounds/chestopen.ogg differ