List Custom Voices
Basic Usage
var response = await Api.ElevenLabs
.ListCustomVoices()
.ExecuteAsync();
foreach (var voice in response.Voices)
{
Debug.Log($"Custom Voice: {voice.Name}");
}What are Custom Voices?
Unity Integration Examples
Example 1: Custom Voice Manager
Example 2: Voice Library UI
Example 3: Voice Type Selector
Provider Support
ElevenLabs
OpenAI
Google
Combining Built-in and Custom Voices
Best Practices
✅ Good Practices
❌ Bad Practices
Error Handling
Next Steps
Last updated