Example #1
0
    public void setRelocationTimer(Text tt)
    {
        float val = float.Parse(tt.text);

        PlayerPrefs.SetFloat("TimeForRelocation", val);
        gph.setTimeForRelocation(val);
        placeholderRelocationTimer.text = "" + val;
    }
Example #2
0
    void Start()
    {
        string ver = Application.version;

        if (PlayerPrefs.HasKey("bver"))
        {
            if (!(PlayerPrefs.GetString("bver").Equals(ver)))
            {
                UnityWebRequest.ClearCookieCache();
                Caching.ClearCache();
                PlayerPrefs.DeleteAll();
                PlayerPrefs.SetString("bver", ver);
            }
        }
        else
        {
            UnityWebRequest.ClearCookieCache();
            Caching.ClearCache();
            PlayerPrefs.DeleteAll();
            PlayerPrefs.SetString("bver", ver);
        }

        Debug.Log("Version " + Application.version + " bver " + ver);

        gph = GetComponent <GetPlaceHoldersDev>();
        stickerInfoForPanel = null;
        stickerDeActivate   = null;
        gloc = 0; bloc = 0;

        if (PlayerPrefs.HasKey("TimeForRelocation"))
        {
            float val = PlayerPrefs.GetFloat("TimeForRelocation");
            gph.setTimeForRelocation(val);
            placeholderRelocationTimer.text = "" + val;
        }
        else
        {
            PlayerPrefs.SetFloat("TimeForRelocation", gph.timeForRelocation);
        }

        aRcamera = Camera.main.gameObject;
    }
Example #3
0
 public void setRelocationTimer(Text tt)
 {
     placeholderRelocationTimer.text = "" + PlayerPrefs.GetFloat("TimeForRelocation");
     gph.setTimeForRelocation(float.Parse(tt.text));
     PlayerPrefs.SetFloat("TimeForRelocation", float.Parse(tt.text));
 }