Exemple #1
0
    public void OnPhotonCustomRoomPropertiesChanged(ExitGames.Client.Photon.Hashtable changedProperties)
    {
        // ルームプロパティからsumScoreを取得
        object value = null;

        if (changedProperties.TryGetValue("sumScore", out value))
        {
            script.sumScore = (int)value;
            //レベルを計算
            script.ComputeLevel();
        }
    }