Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 14 Next capture
2021 2022 2023
2 captures
13 Jun 22 - 14 Jun 22
sparklines
Close Help
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
  • Asset Store
  • Get Unity

UNITY ACCOUNT

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account
  • Blog
  • Forums
  • Answers
  • Evangelists
  • User Groups
  • Beta Program
  • Advisory Panel

Navigation

  • Home
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
    • Blog
    • Forums
    • Answers
    • Evangelists
    • User Groups
    • Beta Program
    • Advisory Panel

Unity account

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account

Language

  • Chinese
  • Spanish
  • Japanese
  • Korean
  • Portuguese
  • Ask a question
  • Spaces
    • Default
    • Help Room
    • META
    • Moderators
    • Topics
    • Questions
    • Users
    • Badges
  • Home /
avatar image
0
Question by NikolaStoilkovic · Mar 14 at 04:44 PM · playerprefslevellevelsunlock

Why does my level progress reset after clicking the level menu button but doesnt reset after clicking the lvel menu button from the win screen?

I have a game with unlockable levels, and at lets say Level 3, when i win level 2, the level 3 button is unlocked. But when i go to main menu from pausing Level 3, all the buttons reset. Here is the code:

Level menu code:

using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.UI; using UnityEngine.SceneManagement;

public class LevelSelection : MonoBehaviour { public Button[] lvlButtons;

 // Start is called before the first frame update
 void Awake()
 {
     


     int levelAt = PlayerPrefs.GetInt("levelAt", 2); 

     for (int i = 0; i < lvlButtons.Length; i++)
     {
         if (i + 2 > levelAt)
             lvlButtons[i].interactable = false;
     }
 }

}

Next level code:

using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.SceneManagement;

public class MoveToNextLevel : MonoBehaviour { public int nextSceneLoad;

 // Start is called before the first frame update
 void Start()
 {
     nextSceneLoad = SceneManager.GetActiveScene().buildIndex + 1;
 }

 public void OnTriggerEnter(Collider other)
 {
     if (other.gameObject.tag == "covek")
     {
         
             if (nextSceneLoad > PlayerPrefs.GetInt("levelAt"))
             {
                 PlayerPrefs.SetInt("levelAt", nextSceneLoad);
             }
         
     }
 }

 public void Leveli()
 {
     SceneManager.LoadScene(nextSceneLoad);
 }










}

Main menu code (for both buttons)

using UnityEngine; using UnityEngine.SceneManagement; using UnityEngine.UI; using System.Collections;

public class levelmenu : MonoBehaviour { public void levelmeni() { SceneManager.LoadScene("Level Selections"); } }

Comment
Add comment
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

1 Reply

· Add your reply
  • Sort: 
avatar image
0

Answer by rh_galaxy · Mar 15 at 09:20 PM

Three things might help you.

You need to save after SetInt() for it to take effect (I'm not sure if GetInt() will return the last set value or not if you don't do Save(), maybe it does, but if you exit the program without saving it will be lost)

 PlayerPrefs.Save();

When you do PlayerPrefs.GetInt("levelAt") you should provide a default value if it doesn't exist, the doc doesn't say what happens if not, but I suspect it returns 0

 PlayerPrefs.GetInt("levelAt", 0);

I would do the button interactable code like this so it's easier to see what it does, and be sure to set everything and not trust the values it has.

 int levelAt = PlayerPrefs.GetInt("levelAt", 0); 
 for (int i = 0; i < lvlButtons.Length; i++)
 {
     lvlButtons[i].interactable = (i <= levelAt+1); //set true up to current level+1, else false
 }
Comment
Add comment · Share
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

Your answer

Hint: You can notify a user about this post by typing @username

Up to 2 attachments (including images) can be used with a maximum of 524.3 kB each and 1.0 MB total.

Follow this Question

Answers Answers and Comments

139 People are following this question.

avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image

Related Questions

PlayerPrefs not save my unlock button (Levels lock/unlock) 0 Answers

stumped on level unlock 0 Answers

How to make PlayerPrefs delete if the player didn't touch game finish collider 1 Answer

PlayerPrefs Problem crashing with SetBool 2 Answers

Dynamic Star System with PlayerPrefs 1 Answer


Enterprise
Social Q&A

Social
Subscribe on YouTube social-youtube Follow on LinkedIn social-linkedin Follow on Twitter social-twitter Follow on Facebook social-facebook Follow on Instagram social-instagram

Footer

  • Purchase
    • Products
    • Subscription
    • Asset Store
    • Unity Gear
    • Resellers
  • Education
    • Students
    • Educators
    • Certification
    • Learn
    • Center of Excellence
  • Download
    • Unity
    • Beta Program
  • Unity Labs
    • Labs
    • Publications
  • Resources
    • Learn platform
    • Community
    • Documentation
    • Unity QA
    • FAQ
    • Services Status
    • Connect
  • About Unity
    • About Us
    • Blog
    • Events
    • Careers
    • Contact
    • Press
    • Partners
    • Affiliates
    • Security
Copyright © 2020 Unity Technologies
  • Legal
  • Privacy Policy
  • Cookies
  • Do Not Sell My Personal Information
  • Cookies Settings
"Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S. and elsewhere (more info here). Other names or brands are trademarks of their respective owners.
  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges