void OnDestroy() { if (_voice == this) { destroySpeech(); _voice = null; } }
// Use this for initialization void Start() { if (_voice == null) { _voice = this; DontDestroyOnLoad(gameObject); initSpeech(); } }