コード例 #1
0
ファイル: PPlayer.cs プロジェクト: studentutu/UniScript
 public override void OnRoomPropertiesUpdate(PhotonHashtable changes)
 {
     if (changes.ContainsKey("is3rdPersonCam"))
     {
         thirdPersonCam.SetActive(changes.SafeGet("is3rdPersonCam", false));
     }
 }
コード例 #2
0
ファイル: PhotonExt.cs プロジェクト: studentutu/UniScript
 public static bool Is <T>(this ExitGames.Client.Photon.Hashtable _this, string key, T expected)
     where T : class
 {
     return(_this.SafeGet(key, default(T)) == expected);
 }