Changed constants to the same Playfab Backend

dev-ali
Hazim Bin Ijaz 2 days ago
parent a7dd005c87
commit dff0ab95f1

@ -130,10 +130,10 @@ public class GoogleSignInManager : MonoBehaviour
private void LoginToPlayFab(string authCode) private void LoginToPlayFab(string authCode)
{ {
PlayFabSettings.staticSettings.TitleId = "1F528E"; PlayFabSettings.staticSettings.TitleId = GameConstants.PlayfabTitleId;
var request = new LoginWithGoogleAccountRequest var request = new LoginWithGoogleAccountRequest
{ {
TitleId = "1F528E", TitleId = GameConstants.PlayfabTitleId,
ServerAuthCode = authCode, ServerAuthCode = authCode,
CreateAccount = true CreateAccount = true
}; };

@ -12,8 +12,8 @@ MonoBehaviour:
m_Script: {fileID: 11500000, guid: 093286084a3d1994a9c28281a1c38b1d, type: 3} m_Script: {fileID: 11500000, guid: 093286084a3d1994a9c28281a1c38b1d, type: 3}
m_Name: PlayFabSharedSettings m_Name: PlayFabSharedSettings
m_EditorClassIdentifier: m_EditorClassIdentifier:
TitleId: 7D3B9 TitleId:
DeveloperSecretKey: U4C66QH1S7DKJH1CAEBMICAZ1KJU5E97YZ5BRU6OOREYUE9AJD DeveloperSecretKey:
ProductionEnvironmentUrl: ProductionEnvironmentUrl:
RequestType: 0 RequestType: 0
DisableDeviceInfo: 0 DisableDeviceInfo: 0

@ -2,11 +2,13 @@
public class GameConstants public class GameConstants
{ {
public static string LevelCompletedStatsKey = "LevelsCompleted"; public static string GameNamePrefix = "PiPuzzle";
public static string LevelCompletedStatsKey = GameNamePrefix+"_LevelsCompleted";
public static string NameEnteredCheckKey = "IsNameEntered"; public static string NameEnteredCheckKey = "IsNameEntered";
public static string AvatarSelectedCheckKey = "AvatarSelected"; public static string AvatarSelectedCheckKey = "AvatarSelected";
public static string AvatarSelectedIndex = "AvatarSelectedIndex"; public static string AvatarSelectedIndex = "AvatarSelectedIndex";
public static string DisplayNameKey = "DisplayName"; public static string DisplayNameKey = "DisplayName";
public static string PlayfabTitleId = "168AE2";
#region MyRegion #region MyRegion

@ -7,7 +7,7 @@ using UnityEngine.SceneManagement;
public class PlayFabInit : MonoBehaviour public class PlayFabInit : MonoBehaviour
{ {
public string playFabTitleId = "7D3B9"; // Replace with your PlayFab Title ID public string playFabTitleId = "168AE2"; // Replace with your PlayFab Title ID
//void Start() //void Start()
//{ //{

@ -27,7 +27,7 @@ public class PlayFabLeaderboards : MonoBehaviour
public void UpdateLevelCompletionTime(string tier, int levelNumber, int completionTimeInSeconds) public void UpdateLevelCompletionTime(string tier, int levelNumber, int completionTimeInSeconds)
{ {
string statisticName = $"{tier}_Level_{levelNumber}_Time"; string statisticName = $"{GameConstants.GameNamePrefix}_{tier}_Level_{levelNumber}_Time";
var request = new UpdatePlayerStatisticsRequest var request = new UpdatePlayerStatisticsRequest
{ {

@ -95,7 +95,7 @@ public class GameScene : MonoBehaviour
public void ShowLeaderboardPopup() public void ShowLeaderboardPopup()
{ {
levelLeaderboardPopup.Open(); levelLeaderboardPopup.Open();
string statisticName = $"{GameManager.CurrentLevelGroupIndex + 1}_Level_{GameManager.CurrentLevelNo}_Time"; string statisticName = $"{GameConstants.GameNamePrefix}_{GameManager.CurrentLevelGroupIndex + 1}_Level_{GameManager.CurrentLevelNo}_Time";
PlayFabManager.Instance.playFabLeaderboards.GetLeaderboardByKey(statisticName, OnLBSuccess, OnLBFail); PlayFabManager.Instance.playFabLeaderboards.GetLeaderboardByKey(statisticName, OnLBSuccess, OnLBFail);
} }

Loading…
Cancel
Save