public class Button_TTS : MonoBehaviour { private Button button_TTS; private AudioSource audioSource; private string tts_ment; public string TTS_Ment { get { return tts_ment; } set { tts_ment = value; } } private void Start() { button_TTS = GetComponent(); audioSource = GetComponent(); button_TTS.onClick.RemoveAllListe..