Sound Effect Generation
This feature allows you to generate short, high-quality sound effects from text prompts using AI. It's especially useful for game developers, UI feedback sounds, ambient design, and more — powered by ElevenLabs SFX models.
✅ Basic Usage
🔊 You get a playable
AudioClip
you can use immediately in Unity.
⚙️ Configuration Options
SetDuration(seconds)
Length of the generated sound in seconds (e.g. 2.0)
SetPromptInfluence(value)
Range: 0.0 ~ 1.0
- how strongly the prompt should shape the sound
SetOutputPath(path)
Where to save the .mp3
file (optional)
SetModel(model)
If multiple SFX models are supported in future
📦 Example Result
Prompt: "Rain hitting a metal roof"
Output: AI-generated AudioClip
~2 seconds long with realistic metallic raindrops.
🧠 Tips
Internally uses ElevenLabs Sound Effects API.
Supported file format is
.mp3
by default. Use.AsWav()
or.AsAudioClip()
for Unity.Great for prototyping audio-heavy projects or saving on asset costs.
Last updated