Inheritance: PlayFab.SharedModels.PlayFabResultCommon
コード例 #1
0
ファイル: StoreDeckDao.cs プロジェクト: gabrielamboss/Ulkoa
 protected override void succesfullTitleDataQuerry(GetTitleDataResult result)
 {
     foreach (var entry in result.Data)
     {
         deckList.Add(JsonUtility.FromJson<StoreDeck>(entry.Value));
     }
 }
コード例 #2
0
		private void OnTitleData( GetTitleDataResult result){
			Data = result.Data;
			PlayFabTitleDataLoaded = true;
		}
コード例 #3
0
ファイル: Dao.cs プロジェクト: gabrielamboss/Ulkoa
 protected virtual void succesfullTitleDataQuerry(GetTitleDataResult result)
 {
     Debug.Log("Got the following titleData:");
     foreach (var entry in result.Data)
     {
         Debug.Log(entry.Key + ": " + entry.Value);
     }
 }
コード例 #4
0
 /// <summary>
 /// Event called when title data load completes.
 /// </summary>
 /// <param name="result">Title data.</param>
 private void OnTitleDataLoadSuccess(GetTitleDataResult result)
 {
     titleData = result.Data;
 }