Text To Speech ( TTS )
Inherit from EasyManager.cs
using EasyCodeForVivox;
public class VivoxManager : EasyManager
{
}Inject EasyTextToSpeech
using EasyCodeForVivox;
using UnityEngine;
using Zenject;
public class VivoxTextToSpeech : MonoBehaviour
{
EasyTextToSpeech _textToSpeech;
[Inject]
private void Initialize(EasyTextToSpeech textToSpeech)
{
_textToSpeech = textToSpeech;
}
}Choosing Voice Gender
EasyManager
EasyTextToSpeech
Local Text-to-Speech (TTS)
Local
EasyManager
EasyTextToSpeech
Local Queued
EasyManager
EasyTextToSpeech
Local Screen Reader
EasyManager
EasyTextToSpeech
Remote Text-to-Speech (TTS)
Remote
EasyManager
EasyTextToSpeech
Remote Queued
EasyManager
EasyTextToSpeech
Remote and Local Text-to-Speech (TTS)
Remote and Local
EasyManager
EasyTextToSpeech
Remote and Local Queued
EasyManager
EasyTextToSpeech
Last updated