Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 11 Next capture
2021 2022 2023
1 capture
11 Jun 22 - 11 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 Rhylvin2015 · Jul 18, 2015 at 03:50 PM · scenesavescene-loadingsave scenesavegame

how to save the progress on scene1 when it goes to scene2, so when it goes back to scene1 its still the same saved scene

hello, I have a 2D game that I created that when I pause on the level1.scene it has buttons that will take him to the shop menu which is in the mainmenu.scene and so if the player is done with its purchases or wants to go back to the game(level1.scene), how do I make it so that the level1.scene is still on pause on the same spot where he left.

Comment
Add comment · Show 1
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 Owen-Reynolds · Jul 18, 2015 at 04:42 PM 0
Share

There are several answered Qs on this. Try a search "unity go back to scene", "unity restore scene" ... . It's not easy, and some of the suggestions are ways make it look like a scene change, when it really isn't.

2 Replies

· Add your reply
  • Sort: 
avatar image
0

Answer by YoungDeveloper · Jul 18, 2015 at 04:16 PM

Check out PlayerPrefs

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
avatar image
0

Answer by Eudaimonium · Jul 18, 2015 at 06:09 PM

I wouldn't suggest using PlayerPrefs for that. It's saving things in Registry, basically.

You need an object that persists during the entire session (cross-scene object that doesn't get destroyed). You save your stuff into that object, transition the scene, and then load from it.

As per one of the Unity tutorials, here is a basic structure of my cross-scene object, called Global Control, which uses a Singleton design concept.

 public class GlobalControl : MonoBehaviour 
 {
     public static GlobalControl Instance;
 
 //here put all variables you're going to need
 
 //Pseudo-singleton concept from Unity dev tutorial video:
     void Awake () 
     {
 
         if (Instance == null)
         {
             DontDestroyOnLoad(gameObject);
             Instance = this;
         }
         else if (Instance != this)
         {
             Destroy (gameObject);
         }
        }
 
 //here put all aditional functions you need across entire game, example:
 public void SaveToMemory()
     {
         //Tell all subscribed objects to save themselves in the scene data - this is my example using .NET delegate and event system.
         if (OnSave != null)
             OnSave(null, null);
     }
 }
 
 
 //Later anywhere in code, call:
 GlobalControl.Instance.myVariableThatNeedsSaving = importantStuff;
 //or:
 GlobalControl.Instance.SaveToMemory();
 
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

25 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

Related Questions

How to Intercept Unity "Save Scene As.." right after saving? 1 Answer

Will Restoring my computer restore my scene? 0 Answers

Transfer Data Between Two Loaded Scenes 0 Answers

How to keep certain information when reloading a level 8 Answers

Save Data Strategies 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