@rbxts/sound-manager
v2.2.0
Published
A sound manager for Roblox-Typescript projects.
Downloads
587
Readme
🔉 Sound Manager
Sound Manager is a roblox sound-management library built with Roblox-TS, designed to simplify sound handling in your roblox projects.
📦 Installation
To use the Sound Manager library in your Roblox-TS project, install it via npm:
npm install @rbxts/sound-manager
🚀 Quick Start
⚡ Starting with Sound Manager
Sound-Manager uses createSoundRegistry and createSoundCategoryRegistry to create sounds and categories.
import { createSoundRegistry } from "@rbxts/sound-manager";
const Sounds = createSoundRegistry({
SCP096: {
id: "rbxassetid://4714389545",
volume: 1,
loop: false,
},
Test: {
id: "rbxassetid://17771398985",
volume: 1,
loop: true,
}
});🎵 Playing Sounds
To play a sound, you can use the play method on the sound registry:
Sounds.play("SCP096");
🗺️ Roadmap
See the Roadmap for planned features and current progress.
📝 License
Sound Manager is licensed under the MIT LICENSE.
For more Details: https://dev-lukas0.github.io/Sound-Manager-Docs/
