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 KnightRiderGuy · Jan 18, 2016 at 07:11 PM · c#uiscene-switchingdata storagetoggle button

Remember Toggle Button State When Scene Return

Is it possible to have say a set of toggle button in a scene we'll call scene one and then set those toggles, got to scene 2 and then return to scene one and have those toggles be set as they were when you left scene one? I'm using the UI canvas system for buttons and toggles.

Comment
Add comment · Show 9
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 vintar · Jan 18, 2016 at 07:17 PM 0
Share

You can just save the toggles as bool in a persistent manager script and reset the new toggles to those values upon loading the new scene.

avatar image KnightRiderGuy vintar · Jan 18, 2016 at 07:31 PM 0
Share

@vintar, Ah I kind of thought it might be something like that. So if I make an empty game object and put a script on it called "ToggleSettings" or something and then somehow pass my toggle settings to that with a don't destroy on it it will keep my toggle settings when I return to the scene I just left? If I'm understanding that right. What would I need to place in this script?

avatar image vintar KnightRiderGuy · Jan 18, 2016 at 07:45 PM 0
Share

Yes, I would create an empty object and add a script to it, and in the awake method add the DontDestroyOnLoad(gameObject) call, lets call it ToggleSettings.cs. Then I would add a script to the canvas that has a simple method for each of you buttons. If you are familiar with dragging the script onto the "On Click" section of the button, then you are half way there. Something like :

 ToggleSettings _toggleSettings;
         
  void Start()
 {
  _toggleSettings = gameObject.Find("ToggleSaver").GetComponent();
  }
     
 //this will be the method to use in the On Click for the first button, add as many methods as you need for each button.
 void FirstSliderValue(Slider slider)     
 {
      _toggleSettings.First = slider.value; //_toggleSettings.First is a public bool 
 }







Show more comments
avatar image vintar · Jan 19, 2016 at 07:21 PM 0
Share

I was thinking about this again and the easier less complicated route would be to just use PlayerPrefs.

avatar image SterlingSoftworks vintar · Jan 19, 2016 at 07:52 PM 1
Share

EVEN LESS complicated would be to have static variables. People often forget about the "static" that can be applied to variables and what it exactly does :D

0 Replies

· Add your reply
  • Sort: 

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

63 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

Related Questions

Object looses Inspector properties When Scene returns 1 Answer

Toggle UI Text With UI Toggle Button 1 Answer

Toggle Button For Timed Device When Timer Runs Out 1 Answer

Temple Run and Subway Surfers Game Over Implementation? 0 Answers

InputField remove one character 2 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