Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 12 Next capture
2021 2022 2023
1 capture
12 Jun 22 - 12 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 /
  • Help Room /
avatar image
0
Question by Paulus257 · Apr 17, 2017 at 07:29 PM · c#unity 5scene

(Level Selection) Only level 1 and 2 is getting unlocked , if i played lvl 2 , lvl 3 is not getting unlocked (i have 7 levels)

So i have 7 levels/scenes . My first level is unlocked and my others not ( thats good) . When i completed level 1 , level 2 is unlocked but when i completed level 2 , level 3 is not unlocked . Can anyone help me please? Script of GameManager :

 using UnityEngine;
 using UnityEngine.SceneManagement;
 
 public class GameManager : MonoBehaviour {
 
     public string nextLevel = "Level2";
     public int levelToUnlock = 2;
 
     public SceneFader sceneFader;
 
     bool gameHasEnded = false;
 
     public float restartDelay = 1f;
 
     public GameObject completeLevelUI;
 
     public void CompleteLevel ()
     {
         completeLevelUI.SetActive(true);
     }
 
     public void EndGame()
     {
         if (gameHasEnded == false)
         {
             gameHasEnded = true;
             Debug.Log("GAME OVER");
             Invoke("Restart", restartDelay);
         }
     
     }
     void Restart()
     {
         SceneManager.LoadScene(SceneManager.GetActiveScene().name);
     }
 
     public void WinLevel ()
     {
         PlayerPrefs.SetInt("levelReached", levelToUnlock);
         sceneFader.FadeTo(nextLevel);
     }
 
 }

Script of EndTrigger (I don't think you need this )

 using UnityEngine;
 
 public class EndTrigger : MonoBehaviour {
 
     public GameManager gameManager;
 
     void OnTriggerEnter ()
     {
         gameManager.WinLevel();
         gameManager.CompleteLevel();
     }
     
    
 }






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
Best Answer

Answer by Lapius · Apr 18, 2017 at 12:25 PM

Save progress with playerprefs and check every time you load level selection

Comment
Add comment · Show 1 · 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
avatar image Paulus257 · Apr 20, 2017 at 06:11 PM 0
Share

Hey Thank you for your comment but it didn't work. I think this is the problem . public string nextLevel = "Level2"; public int levelToUnlock = 2;

I need to replace "Level2" and "2" with like "Next Level" Or something , can you help me ;p?

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

7 People are following this question.

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

Related Questions

1 Restart Scene multiple levels. Is this possible? - C# - 1 Answer

How to get the active/loaded Scene then turn the name of it into a string? [C#] 1 Answer

Fade In Fade Out in Carboard 0 Answers

UNET Multiple online scenes 0 Answers

How do I create a disconnect button in a scene [UNET] 0 Answers


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