facebook twitter hatena line email

「Unity/photon/pun2/chat」の版間の差分

提供: 初心者エンジニアの簡易メモ
移動: 案内検索
(ページの作成:「 ==接続エラー Subscribe called while not connected to front end server. photonの調子悪いとエラーが出る。」)
 
(Admin がページ「Unity/photon/pun2/エラー」を「Unity/photon/pun2/chat」に、リダイレクトを残さずに移動しました)
 
(同じ利用者による、間の2版が非表示)
行1: 行1:
 
+
==Chat接続エラー==
==接続エラー
+
OnConnected()が受信される前に、chatClient.Subscribe()を実行すると、
 +
DebugReturnメソッドが呼ばれ、以下エラーが発行される
 
  Subscribe called while not connected to front end server.
 
  Subscribe called while not connected to front end server.
photonの調子悪いとエラーが出る。
+
 
 +
<pre>
 +
public interface IChatClientListener
 +
{
 +
    void DebugReturn(DebugLevel level, string message);
 +
}
 +
</pre>

2023年2月13日 (月) 18:11時点における最新版

Chat接続エラー

OnConnected()が受信される前に、chatClient.Subscribe()を実行すると、 DebugReturnメソッドが呼ばれ、以下エラーが発行される

Subscribe called while not connected to front end server.
public interface IChatClientListener
{
    void DebugReturn(DebugLevel level, string message);
}