質問編集履歴
3
例外の詳細を追加しました
title
CHANGED
File without changes
|
body
CHANGED
@@ -19,6 +19,16 @@
|
|
19
19
|
|
20
20
|
IndexOutOfRangeException: Index was outside the bounds of the array.
|
21
21
|
(wrapper stelemref) System.Object.virt_stelemref_sealed_class(intptr,object)
|
22
|
+
PhotonMgr.UpdateMemberList () (at Assets/Script/PhotonMgr.cs:96)
|
23
|
+
PhotonMgr.OnJoinedRoom () (at Assets/Script/PhotonMgr.cs:83)
|
24
|
+
UnityEngine.GameObject:SendMessage(String, Object, SendMessageOptions)
|
25
|
+
NetworkingPeer:SendMonoMessage(PhotonNetworkingMessage, Object[]) (at Assets/Photon Unity Networking/Plugins/PhotonNetwork/NetworkingPeer.cs:2856)
|
26
|
+
NetworkingPeer:OnEvent(EventData) (at Assets/Photon Unity Networking/Plugins/PhotonNetwork/NetworkingPeer.cs:2564)
|
27
|
+
ExitGames.Client.Photon.PeerBase:DeserializeMessageAndCallback(StreamBuffer)
|
28
|
+
ExitGames.Client.Photon.EnetPeer:DispatchIncomingCommands()
|
29
|
+
ExitGames.Client.Photon.PhotonPeer:DispatchIncomingCommands()
|
30
|
+
PhotonHandler:Update() (at Assets/Photon Unity Networking/Plugins/PhotonNetwork/PhotonHandler.cs:161)
|
22
31
|
|
32
|
+
|
23
33
|
日本語訳:インデックスは配列の境界外でした。
|
24
34
|
```
|
2
例外の詳細の追加
title
CHANGED
File without changes
|
body
CHANGED
@@ -16,4 +16,9 @@
|
|
16
16
|
++Count;
|
17
17
|
}
|
18
18
|
}
|
19
|
+
|
20
|
+
IndexOutOfRangeException: Index was outside the bounds of the array.
|
21
|
+
(wrapper stelemref) System.Object.virt_stelemref_sealed_class(intptr,object)
|
22
|
+
|
23
|
+
日本語訳:インデックスは配列の境界外でした。
|
19
24
|
```
|
1
初心者マークの追加
title
CHANGED
File without changes
|
body
CHANGED
@@ -4,7 +4,7 @@
|
|
4
4
|
```C#
|
5
5
|
|
6
6
|
public string[] UserNames = new string[10];
|
7
|
-
|
7
|
+
|
8
8
|
public void UpdateMemberList()//一度だけ呼び出す
|
9
9
|
{
|
10
10
|
foreach (var p in PhotonNetwork.playerList)
|