1. 程式人生 > >get_isPlaying can only be called from the main thread unity3d

get_isPlaying can only be called from the main thread unity3d

unity3d報這個錯誤 get_isPlaying can only be called from the main thread.
原因就是多執行緒服務中,非主執行緒操作,ui介面等的一些操作,就會報這個錯誤,解決方案就是:
寫在Update()中監聽進行修改,這樣就沒有錯誤了