Fixed Sign In with data fetching

hazim-dev
Ali Sharoz 2 weeks ago
parent 5b756716ea
commit 539aef3d33

@ -109,7 +109,7 @@ namespace D2D.Databases
private void SaveMoney(float val) private void SaveMoney(float val)
{ {
PlayerPrefs.SetInt("Money", Money.Value.Round()); SafePlayerPrefs.SetInt("Money", Money.Value.Round());
} }
private void OnApplicationQuit() private void OnApplicationQuit()
@ -151,7 +151,7 @@ namespace D2D.Databases
ES3.Save("LastUnlockedMember", ""); ES3.Save("LastUnlockedMember", "");
ES3.Save(UnlockedMembersKey, new List<string>()); ES3.Save(UnlockedMembersKey, new List<string>());
PlayerPrefs.SetInt("Money", 0); SafePlayerPrefs.SetInt("Money", 0);
} }
} }
} }

@ -855,7 +855,7 @@ public static class ES3
} }
else if (oldSettings.location == Location.PlayerPrefs) else if (oldSettings.location == Location.PlayerPrefs)
{ {
PlayerPrefs.SetString(newSettings.FullPath, PlayerPrefs.GetString(oldSettings.FullPath)); SafePlayerPrefs.SetString(newSettings.FullPath, PlayerPrefs.GetString(oldSettings.FullPath));
} }
else if (oldSettings.location == Location.Cache) else if (oldSettings.location == Location.Cache)
{ {
@ -901,7 +901,7 @@ public static class ES3
} }
else if (oldSettings.location == Location.PlayerPrefs) else if (oldSettings.location == Location.PlayerPrefs)
{ {
PlayerPrefs.SetString(newSettings.FullPath, PlayerPrefs.GetString(oldSettings.FullPath)); SafePlayerPrefs.SetString(newSettings.FullPath, PlayerPrefs.GetString(oldSettings.FullPath));
PlayerPrefs.DeleteKey(oldSettings.FullPath); PlayerPrefs.DeleteKey(oldSettings.FullPath);
} }
else if (oldSettings.location == Location.Cache) else if (oldSettings.location == Location.Cache)

@ -128,7 +128,7 @@ namespace ES3Internal
} }
else if(settings.location == ES3.Location.PlayerPrefs) else if(settings.location == ES3.Location.PlayerPrefs)
{ {
PlayerPrefs.SetString(settings.FullPath, PlayerPrefs.GetString(settings.FullPath + temporaryFileSuffix)); SafePlayerPrefs.SetString(settings.FullPath, PlayerPrefs.GetString(settings.FullPath + temporaryFileSuffix));
PlayerPrefs.DeleteKey(settings.FullPath + temporaryFileSuffix); PlayerPrefs.DeleteKey(settings.FullPath + temporaryFileSuffix);
PlayerPrefs.Save(); PlayerPrefs.Save();
} }

@ -48,14 +48,14 @@ namespace ES3Internal
System.Buffer.BlockCopy(sourceBytes, 0, finalBytes, 0, sourceBytes.Length); System.Buffer.BlockCopy(sourceBytes, 0, finalBytes, 0, sourceBytes.Length);
System.Buffer.BlockCopy(appendBytes, 0, finalBytes, sourceBytes.Length, appendBytes.Length); System.Buffer.BlockCopy(appendBytes, 0, finalBytes, sourceBytes.Length, appendBytes.Length);
PlayerPrefs.SetString(path, System.Convert.ToBase64String(finalBytes)); SafePlayerPrefs.SetString(path, System.Convert.ToBase64String(finalBytes));
PlayerPrefs.Save(); PlayerPrefs.Save();
} }
else else
PlayerPrefs.SetString(path + ES3IO.temporaryFileSuffix, System.Convert.ToBase64String(this.ToArray())); SafePlayerPrefs.SetString(path + ES3IO.temporaryFileSuffix, System.Convert.ToBase64String(this.ToArray()));
// Save the timestamp to a separate key. // Save the timestamp to a separate key.
PlayerPrefs.SetString("timestamp_" + path, System.DateTime.UtcNow.Ticks.ToString()); SafePlayerPrefs.SetString("timestamp_" + path, System.DateTime.UtcNow.Ticks.ToString());
} }
base.Dispose(disposing); base.Dispose(disposing);
} }

@ -128,7 +128,7 @@ public class AchievementManager : MonoBehaviour
int coins = PlayerPrefs.GetInt("Coin"); int coins = PlayerPrefs.GetInt("Coin");
Debug.Log(toAdd + " Coins Rewarded"); Debug.Log(toAdd + " Coins Rewarded");
coins += toAdd; coins += toAdd;
PlayerPrefs.SetInt("Coin", coins); SafePlayerPrefs.SetInt("Coin", coins);
StartCoroutine(startCoinShakeEffect(coins - toAdd, coins, .5f)); StartCoroutine(startCoinShakeEffect(coins - toAdd, coins, .5f));
} }
@ -169,12 +169,12 @@ public class AchievementManager : MonoBehaviour
#region Ali's Code for Reward #region Ali's Code for Reward
PlayerPrefs.SetInt("UIAchievement" + Index + "Claimable", 1); SafePlayerPrefs.SetInt("UIAchievement" + Index + "Claimable", 1);
int numOfPrevCoins = PlayerPrefs.GetInt("TotalCoinsForReward" + Index, 0); int numOfPrevCoins = PlayerPrefs.GetInt("TotalCoinsForReward" + Index, 0);
int subAchievementIndex = PlayerPrefs.GetInt("subAchievementIndex" + Index, 0); int subAchievementIndex = PlayerPrefs.GetInt("subAchievementIndex" + Index, 0);
PlayerPrefs.SetInt("TotalCoinsForReward" + Index, numOfPrevCoins + achievementInfromation.CoinRewards[Mathf.Clamp(subAchievementIndex,0, achievementInfromation.CoinRewards.Count-1)]); SafePlayerPrefs.SetInt("TotalCoinsForReward" + Index, numOfPrevCoins + achievementInfromation.CoinRewards[Mathf.Clamp(subAchievementIndex,0, achievementInfromation.CoinRewards.Count-1)]);
subAchievementIndex++; subAchievementIndex++;
PlayerPrefs.SetInt("subAchievementIndex" + Index, subAchievementIndex); SafePlayerPrefs.SetInt("subAchievementIndex" + Index, subAchievementIndex);
#endregion #endregion
@ -273,7 +273,7 @@ public class AchievementManager : MonoBehaviour
{ {
for (int i = 0; i < States.Count; i++) for (int i = 0; i < States.Count; i++)
{ {
PlayerPrefs.SetString("AchievementState_" + i, JsonUtility.ToJson(States[i])); SafePlayerPrefs.SetString("AchievementState_" + i, JsonUtility.ToJson(States[i]));
} }
PlayerPrefs.Save(); PlayerPrefs.Save();
} }

@ -102,7 +102,7 @@ public class AchievenmentListIngame : MonoBehaviour
{ {
if (PlayerPrefs.GetInt("UIAchievement" + i + "Claimable") == 1) if (PlayerPrefs.GetInt("UIAchievement" + i + "Claimable") == 1)
{ {
PlayerPrefs.SetInt("UIAchievement" + i + "Claimable", 0); SafePlayerPrefs.SetInt("UIAchievement" + i + "Claimable", 0);
Stack[i].Tick.SetActive(true); Stack[i].Tick.SetActive(true);
Stack[i].ClaimButton.gameObject.SetActive(true); Stack[i].ClaimButton.gameObject.SetActive(true);
@ -112,7 +112,7 @@ public class AchievenmentListIngame : MonoBehaviour
Stack[i].ClaimButton.onClick.AddListener(() => Stack[i].ClaimButton.onClick.AddListener(() =>
{ {
AchievementManager.instance.AddCoins(numofCoinsToAdd); AchievementManager.instance.AddCoins(numofCoinsToAdd);
PlayerPrefs.SetInt("TotalCoinsForReward" + i, 0); SafePlayerPrefs.SetInt("TotalCoinsForReward" + i, 0);
}); });
} }
} }

@ -35,7 +35,7 @@ public class UIAchievement : MonoBehaviour
int RewardtoAdd = Information.CoinRewards[subAchievementIndex]; int RewardtoAdd = Information.CoinRewards[subAchievementIndex];
int TotalReward = RewardtoAdd + CurrentTotalReward; int TotalReward = RewardtoAdd + CurrentTotalReward;
Information.TotalCoinReward = TotalReward; Information.TotalCoinReward = TotalReward;
PlayerPrefs.SetInt("TotalRewards"+index, TotalReward); SafePlayerPrefs.SetInt("TotalRewards"+index, TotalReward);
} }
/// <summary> /// <summary>

@ -19,7 +19,7 @@ public class AudioSourceController : MonoBehaviour
// Ensure default music is ON if running for the first time // Ensure default music is ON if running for the first time
if (!PlayerPrefs.HasKey("MusicBool")) if (!PlayerPrefs.HasKey("MusicBool"))
{ {
PlayerPrefs.SetInt("MusicBool", 1); // Default to ON SafePlayerPrefs.SetInt("MusicBool", 1); // Default to ON
PlayerPrefs.Save(); PlayerPrefs.Save();
} }
@ -42,10 +42,10 @@ public class AudioSourceController : MonoBehaviour
{ {
if (VolScroll != null) if (VolScroll != null)
{ {
PlayerPrefs.SetFloat("Volume", VolScroll.value); SafePlayerPrefs.SetFloat("Volume", VolScroll.value);
} }
PlayerPrefs.SetInt("MusicBool", OffButton.activeSelf ? 1 : 0); SafePlayerPrefs.SetInt("MusicBool", OffButton.activeSelf ? 1 : 0);
PlayerPrefs.Save(); // Ensure immediate save PlayerPrefs.Save(); // Ensure immediate save
// Update last saved state // Update last saved state

@ -1,7 +1,8 @@
{ {
"name": "MoreMountains.Tools.Editor", "name": "MoreMountains.Tools.Editor",
"references": [ "references": [
"GUID:4a1cb1490dc4df8409b2580d6b44e75e" "GUID:4a1cb1490dc4df8409b2580d6b44e75e",
"Assembly-CSharp"
], ],
"includePlatforms": [ "includePlatforms": [
"Editor" "Editor"

@ -104,11 +104,11 @@ public class Advertisements : MonoBehaviour
{ {
if (accept == true) if (accept == true)
{ {
PlayerPrefs.SetInt(userConsent, (int)UserConsent.Accept); SafePlayerPrefs.SetInt(userConsent, (int)UserConsent.Accept);
} }
else else
{ {
PlayerPrefs.SetInt(userConsent, (int)UserConsent.Deny); SafePlayerPrefs.SetInt(userConsent, (int)UserConsent.Deny);
} }
if (initialized == true) if (initialized == true)
{ {
@ -125,11 +125,11 @@ public class Advertisements : MonoBehaviour
{ {
if (accept == true) if (accept == true)
{ {
PlayerPrefs.SetInt(ccpaConsent, (int)UserConsent.Accept); SafePlayerPrefs.SetInt(ccpaConsent, (int)UserConsent.Accept);
} }
else else
{ {
PlayerPrefs.SetInt(ccpaConsent, (int)UserConsent.Deny); SafePlayerPrefs.SetInt(ccpaConsent, (int)UserConsent.Deny);
} }
if (initialized == true) if (initialized == true)
{ {
@ -196,13 +196,13 @@ public class Advertisements : MonoBehaviour
{ {
if (remove == true) if (remove == true)
{ {
PlayerPrefs.SetInt(removeAds, 1); SafePlayerPrefs.SetInt(removeAds, 1);
//if banner is active and user bought remove ads the banner will automatically hide //if banner is active and user bought remove ads the banner will automatically hide
HideBanner(); HideBanner();
} }
else else
{ {
PlayerPrefs.SetInt(removeAds, 0); SafePlayerPrefs.SetInt(removeAds, 0);
} }
} }

@ -64,34 +64,46 @@ public class GoogleSignInManager : MonoBehaviour
GoogleSignInUser user = task.Result; GoogleSignInUser user = task.Result;
string authCode = user.AuthCode; string authCode = user.AuthCode;
PlayerPrefs.SetString("GoogleAuthCode", authCode); SafePlayerPrefs.SetString("GoogleAuthCode", authCode);
PlayerPrefsKeys.RegisterKey("GoogleAuthCode"); //PlayerPrefsKeys.RegisterKey("GoogleAuthCode");
PlayerPrefs.Save(); //PlayerPrefs.Save();
LoginToPlayFab(authCode); LoginToPlayFab(authCode);
} }
private void SignInSilently() private void SignInSilently()
{ {
if (PlayerPrefs.HasKey("GoogleAuthCode")) Debug.Log("Attempting Google Silent Sign-In...");
GoogleSignIn.DefaultInstance.SignInSilently().ContinueWith(task =>
{ {
string authCode = PlayerPrefs.GetString("GoogleAuthCode"); if (task.IsFaulted || task.IsCanceled)
{
Debug.LogWarning("Silent Sign-In failed, falling back to interactive sign-in.");
googleSignInButton.gameObject.SetActive(true);
googleSignInButton.interactable = true;
googleSignInButton.onClick.RemoveAllListeners();
googleSignInButton.onClick.AddListener(SignInWithGoogle);
return;
}
GoogleSignInUser user = task.Result;
string authCode = user.AuthCode;
// Store it if needed for debugging — not for reuse
SafePlayerPrefs.SetString("GoogleAuthCode", authCode);
LoginToPlayFab(authCode); LoginToPlayFab(authCode);
} });
else
{
Debug.LogWarning("No Google AuthCode found for silent sign-in.");
googleSignInButton.gameObject.SetActive(true);
googleSignInButton.onClick.RemoveAllListeners();
googleSignInButton.onClick.AddListener(SignInWithGoogle);
}
} }
private void LoginToPlayFab(string authCode) private void LoginToPlayFab(string authCode)
{ {
PlayFabSettings.staticSettings.TitleId = "1879F5";
var request = new LoginWithGoogleAccountRequest var request = new LoginWithGoogleAccountRequest
{ {
TitleId = PlayFabSettings.TitleId, TitleId = "1879F5",
ServerAuthCode = authCode, ServerAuthCode = authCode,
CreateAccount = true CreateAccount = true
}; };
@ -103,9 +115,9 @@ public class GoogleSignInManager : MonoBehaviour
{ {
Debug.Log("✅ PlayFab Login Success! PlayFab ID: " + result.PlayFabId); Debug.Log("✅ PlayFab Login Success! PlayFab ID: " + result.PlayFabId);
PlayerPrefs.SetString("PlayFabID", result.PlayFabId); SafePlayerPrefs.SetString("PlayFabID", result.PlayFabId);
PlayerPrefsKeys.RegisterKey("PlayFabID"); //PlayerPrefsKeys.RegisterKey("PlayFabID");
PlayerPrefs.Save(); //PlayerPrefs.Save();
LoadPlayerPrefsFromPlayFab(() => LoadPlayerPrefsFromPlayFab(() =>
{ {
@ -133,8 +145,34 @@ public class GoogleSignInManager : MonoBehaviour
{ {
foreach (var entry in result.Data) foreach (var entry in result.Data)
{ {
PlayerPrefs.SetString(entry.Key, entry.Value.Value); string key = entry.Key;
PlayerPrefsKeys.RegisterKey(entry.Key); string rawValue = entry.Value.Value;
if (rawValue.StartsWith("int:"))
{
if (int.TryParse(rawValue.Substring(4), out int intVal))
{
SafePlayerPrefs.SetInt(key, intVal);
}
}
else if (rawValue.StartsWith("float:"))
{
if (float.TryParse(rawValue.Substring(6), out float floatVal))
{
SafePlayerPrefs.SetFloat(key, floatVal);
}
}
else if (rawValue.StartsWith("string:"))
{
SafePlayerPrefs.SetString(key, rawValue.Substring(7));
}
else
{
// Backward compatibility: if value has no type prefix, store as string
SafePlayerPrefs.SetString(key, rawValue);
}
PlayerPrefsKeys.RegisterKey(key);
} }
PlayerPrefs.Save(); PlayerPrefs.Save();

@ -1,6 +1,6 @@
{ {
"name": "Unity.PlayerPrefsEditor.Samples.SampleScene", "name": "Unity.PlayerPrefsEditor.Samples.SampleScene",
"references": [], "references": ["Assembly-CSharp"],
"optionalUnityReferences": [], "optionalUnityReferences": [],
"includePlatforms": [], "includePlatforms": [],
"excludePlatforms": [], "excludePlatforms": [],

@ -2,23 +2,29 @@
using PlayFab; using PlayFab;
using PlayFab.ClientModels; using PlayFab.ClientModels;
using System.Collections.Generic; using System.Collections.Generic;
using Google.Impl;
public class PlayerPrefsSyncManager : MonoBehaviour public class PlayerPrefsSyncManager : MonoBehaviour
{ {
private static PlayerPrefsSyncManager instance; private static PlayerPrefsSyncManager instance;
private void OnApplicationQuit() private void OnApplicationQuit()
{ {
SyncPlayerPrefsToPlayFabOnQuit(); SyncPlayerPrefsToPlayFabOnQuit();
} }
private void OnApplicationPause() private void OnApplicationPause()
{ {
SyncPlayerPrefsToPlayFabOnQuit(); SyncPlayerPrefsToPlayFabOnQuit();
} }
private void OnApplicationFocus(bool focus)
{
if (!focus)
SyncPlayerPrefsToPlayFabOnQuit();
}
void Awake() void Awake()
{ {
// Make this object persistent across scenes
if (instance == null) if (instance == null)
{ {
instance = this; instance = this;
@ -31,7 +37,9 @@ public class PlayerPrefsSyncManager : MonoBehaviour
} }
} }
private void SyncPlayerPrefsToPlayFabOnQuit() private const int MaxKeysPerRequest = 10;
public void SyncPlayerPrefsToPlayFabOnQuit()
{ {
var keys = PlayerPrefsKeys.GetAllKeys(); var keys = PlayerPrefsKeys.GetAllKeys();
if (keys.Count == 0) if (keys.Count == 0)
@ -44,17 +52,78 @@ public class PlayerPrefsSyncManager : MonoBehaviour
foreach (var key in keys) foreach (var key in keys)
{ {
string value = PlayerPrefs.GetString(key); string strVal = PlayerPrefs.GetString(key, "__MISSING__");
allPrefs[key] = value; if (strVal != "__MISSING__")
{
allPrefs[key] = "string:" + strVal;
continue;
}
int intVal = PlayerPrefs.GetInt(key, int.MinValue + 1);
if (intVal != int.MinValue + 1)
{
allPrefs[key] = "int:" + intVal;
continue;
}
float floatVal = PlayerPrefs.GetFloat(key, float.MinValue + 1);
if (floatVal != float.MinValue + 1)
{
allPrefs[key] = "float:" + floatVal.ToString("R");
}
}
foreach (var pair in allPrefs)
{
Debug.Log($"[Sync] {pair.Key} = {pair.Value}");
}
// Split into batches of 10
var batches = new List<Dictionary<string, string>>();
var currentBatch = new Dictionary<string, string>();
foreach (var pair in allPrefs)
{
currentBatch[pair.Key] = pair.Value;
if (currentBatch.Count == MaxKeysPerRequest)
{
batches.Add(currentBatch);
currentBatch = new Dictionary<string, string>();
}
}
if (currentBatch.Count > 0)
{
batches.Add(currentBatch);
}
UploadPlayerPrefsBatches(batches, 0);
}
private void UploadPlayerPrefsBatches(List<Dictionary<string, string>> batches, int index)
{
if (index >= batches.Count)
{
Debug.Log("✅ All PlayerPrefs batches synced to PlayFab.");
return;
} }
var request = new UpdateUserDataRequest var request = new UpdateUserDataRequest
{ {
Data = allPrefs Data = batches[index],
Permission = UserDataPermission.Public
}; };
PlayFabClientAPI.UpdateUserData(request, PlayFabClientAPI.UpdateUserData(request,
result => Debug.Log("✅ Synced PlayerPrefs to PlayFab on quit."), result =>
error => Debug.LogError("❌ Failed to sync PlayerPrefs on quit: " + error.GenerateErrorReport())); {
Debug.Log($"✅ Synced batch {index + 1}/{batches.Count}");
UploadPlayerPrefsBatches(batches, index + 1);
},
error =>
{
Debug.LogError($"❌ Failed to sync batch {index + 1}/{batches.Count}: {error.GenerateErrorReport()}");
});
} }
} }

@ -71,8 +71,8 @@ public class Profile : MonoBehaviour
public void OnDisplayNameEntered() public void OnDisplayNameEntered()
{ {
PlayFabManager.Instance.playFabLeaderboards.SetDisplayName(nameInputField.text); PlayFabManager.Instance.playFabLeaderboards.SetDisplayName(nameInputField.text);
PlayerPrefs.SetInt(GameConstants.NameEnteredCheckKey, 1); SafePlayerPrefs.SetInt(GameConstants.NameEnteredCheckKey, 1);
PlayerPrefs.SetString(GameConstants.DisplayNameKey, nameInputField.text); SafePlayerPrefs.SetString(GameConstants.DisplayNameKey, nameInputField.text);
HeaderProfileName.text = nameInputField.text; HeaderProfileName.text = nameInputField.text;
EnterNamePanel.Close(); EnterNamePanel.Close();
@ -82,8 +82,8 @@ public class Profile : MonoBehaviour
{ {
//PlayFabManager.Instance.playFabLeaderboards.SetDisplayName(nameInputField.text); //PlayFabManager.Instance.playFabLeaderboards.SetDisplayName(nameInputField.text);
EnteredNameButton.interactable = true; EnteredNameButton.interactable = true;
PlayerPrefs.SetInt(GameConstants.AvatarSelectedCheckKey, 1); SafePlayerPrefs.SetInt(GameConstants.AvatarSelectedCheckKey, 1);
PlayerPrefs.SetInt(GameConstants.AvatarSelectedIndex, AvatarID); SafePlayerPrefs.SetInt(GameConstants.AvatarSelectedIndex, AvatarID);
AvatarSelectedSprite = AvatarSprites[AvatarID]; AvatarSelectedSprite = AvatarSprites[AvatarID];
HeaderProfileImg.sprite = AvatarSelectedSprite; HeaderProfileImg.sprite = AvatarSelectedSprite;
SetAvatarID(AvatarID); SetAvatarID(AvatarID);

@ -15,7 +15,7 @@ public class DataManager
set set
{ {
val = value; val = value;
PlayerPrefs.SetInt(_pref_VAL, val); SafePlayerPrefs.SetInt(_pref_VAL, val);
} }
} }
int currentlevelindex = 0; int currentlevelindex = 0;
@ -26,7 +26,7 @@ public class DataManager
set set
{ {
currentlevelindex = value; currentlevelindex = value;
PlayerPrefs.SetInt(_pref_CURRENTLEVELINDEX, currentlevelindex); SafePlayerPrefs.SetInt(_pref_CURRENTLEVELINDEX, currentlevelindex);
} }
} }
int maxlevelindex = 0; int maxlevelindex = 0;
@ -37,7 +37,7 @@ public class DataManager
set set
{ {
maxlevelindex = value; maxlevelindex = value;
PlayerPrefs.SetInt(_pref_MAXLEVELINDEX, maxlevelindex); SafePlayerPrefs.SetInt(_pref_MAXLEVELINDEX, maxlevelindex);
} }
} }

@ -51,7 +51,7 @@ public class CharacterSelectionUI : MonoBehaviour
// Saves the currently selected character index to PlayerPrefs // Saves the currently selected character index to PlayerPrefs
void SaveSelection() void SaveSelection()
{ {
PlayerPrefs.SetInt(Constants.PlayerSelectionKey, currentIndex); SafePlayerPrefs.SetInt(Constants.PlayerSelectionKey, currentIndex);
PlayerPrefs.Save(); PlayerPrefs.Save();
Debug.Log("Character " + currentIndex + " selected and saved."); Debug.Log("Character " + currentIndex + " selected and saved.");
// GameProgressionDatabase.ResetLevelsPerSession(); // GameProgressionDatabase.ResetLevelsPerSession();

@ -9,7 +9,7 @@ public class EventManager : MonoBehaviour
[ContextMenu("CoinIncreaserCaller")] [ContextMenu("CoinIncreaserCaller")]
public void CoinIncreaserCaller() public void CoinIncreaserCaller()
{ {
PlayerPrefs.SetInt("Money", PlayerPrefs.GetInt("Money") + 10); SafePlayerPrefs.SetInt("Money", PlayerPrefs.GetInt("Money") + 10);
CoinIncreaser(); CoinIncreaser();
} }
} }

@ -104,7 +104,7 @@ public class ShopManager : MonoBehaviour, IDetailedStoreListener
if (IsProductPurchased(pItem[i].Id)) if (IsProductPurchased(pItem[i].Id))
{ {
//PlayerPrefs.SetInt("PipeButtonIsEquipped" + 0, 1); //PlayerPrefs.SetInt("PipeButtonIsEquipped" + 0, 1);
PlayerPrefs.SetInt("PipeButtonIsPurchased" + i, 1); SafePlayerPrefs.SetInt("PipeButtonIsPurchased" + i, 1);
Debug.Log("Pipe " + i + " is purchased already!"); Debug.Log("Pipe " + i + " is purchased already!");
// Product is purchased, grant access to features // Product is purchased, grant access to features
} }
@ -392,7 +392,7 @@ public class ShopManager : MonoBehaviour, IDetailedStoreListener
int coins = PlayerPrefs.GetInt("Money"); int coins = PlayerPrefs.GetInt("Money");
Debug.Log(toAdd + " Coins purchased"); Debug.Log(toAdd + " Coins purchased");
coins += toAdd; coins += toAdd;
PlayerPrefs.SetInt("Coin", coins); SafePlayerPrefs.SetInt("Coin", coins);
StartCoroutine(startCoinShakeEffect(coins - toAdd, coins, .5f)); StartCoroutine(startCoinShakeEffect(coins - toAdd, coins, .5f));
} }
//public void EquipUnEquipPipe(int buttonIndex) //public void EquipUnEquipPipe(int buttonIndex)

@ -28,7 +28,7 @@ public class SoundSwitcher : MonoBehaviour
{ {
float value = PlayerPrefs.GetFloat(MasterVolume, 0); float value = PlayerPrefs.GetFloat(MasterVolume, 0);
PlayerPrefs.SetFloat(MasterVolume, value == 0 ? Mute : 0); SafePlayerPrefs.SetFloat(MasterVolume, value == 0 ? Mute : 0);
audioMixer.SetFloat(MasterVolume, PlayerPrefs.GetFloat(MasterVolume, 0)); audioMixer.SetFloat(MasterVolume, PlayerPrefs.GetFloat(MasterVolume, 0));

@ -30,7 +30,7 @@ public class VibrationSwitcher : MonoBehaviour
{ {
float value = PlayerPrefs.GetFloat(Vibration, 0); float value = PlayerPrefs.GetFloat(Vibration, 0);
PlayerPrefs.SetFloat(Vibration, value == 0 ? 1 : 0); SafePlayerPrefs.SetFloat(Vibration, value == 0 ? 1 : 0);
bool isActive = PlayerPrefs.GetFloat(Vibration, 0) == 1; bool isActive = PlayerPrefs.GetFloat(Vibration, 0) == 1;
// MMVibrationManager.SetHapticsActive(isActive); // MMVibrationManager.SetHapticsActive(isActive);

Loading…
Cancel
Save