高亮插件注意事项以及文字转换语音
就是需要使用ProfileReload重新配置一下 不然颜色一直是默认颜色
导入插件命名空间using System.Runtime.InteropServices;
实际代码
[DllImport("__Internal")]
private static extern void StartSpeak(string str);
[DllImport("__Internal")]
private static extern void StopSpeak();
public GameObject obj;
private void OnEnable()
{
if (Application.platform != RuntimePlatform.WebGLPlayer) return;
Mute();
}
// ...
public void Speak(string text)
{
// the jslib only works while in the browser
if (Application.platform == RuntimePlatform.WebGLPlayer)
{
StartSpeak(text);
}
}
public void Mute()
{
StopSpeak();
}
private void Update()
{
if (Input.GetKeyDown(KeyCode.K))
{
Speak("今天天气真好");
obj.SetActive(false);
}
}