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 Zaif · Jan 10, 2016 at 05:18 PM · c#2dgui

Make a script of button which gets value of UI.Toggle and stores it in a file

I am a beginner in Unity. Today I created this scene:

alt text

No script is attached yet. Please make a script in C# which activates when the "Save" button is pressed, then get the ON/OFF Boolean value of check boxes, and then store them to a file. Next time when I open the program, it loads the ON/OFF states of each check box from that file. Thanks!

capture.png (132.6 kB)
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

2 Replies

· Add your reply
  • Sort: 
avatar image
1
Best Answer

Answer by corn · Jan 10, 2016 at 05:41 PM

I'd be glad to help you, but you have to write your script by yourself if you want to learn anything.

For easily storing values, you can use PlayerPrefs.SetInt. To get the toggles' values, use Toggle.isOn. To get references to your toggles, the easiest way be would be to set them by drag and drop in the inspector, by either making them public or using the Serializefield attribute, like so :

 public class Save : MonoBehaviour
 {
     [SerializeField]
     Toggle JavaScriptToggle;
     [SerializeField]
     Toggle PHPToggle;
 
     // etc...
 }

Attach this script to your save button. Then in the editor, drag and drop your JavaScript toggle on the script's JavaScriptToggle field, etc. That way, in your script you can know if your toggle is on with JavaScriptToggle.isOn, and use PlayerPrefs.SetInt to save it (0 for false, 1 for true). Then when the game starts, you get all those saved values with PlayerPrefs.GetInt, and assign them to the toggles using Toggle.isOn again.

Finally, just set the save button's onClick event to call a function of your Save script, say, SaveToggles(), in which you will use PlayerPrefs to store all those values. In order to be able to call this function with the button's onClick, your method has to be public. So what you need is :

 public void SaveButtons()
 {
         PlayerPrefs.SetInt("JavaScript", JavaScriptToggle.isOn ? 1 : 0);
         // etc...
 }

In case you don't know what JavaScriptToggle.isOn ? 1 : 0 means, it is a ternary operator. It means : "if JavaScriptToggle is true, then return 1. Else return 0".

Try to understand all this, and you'll have no problem writing your script.

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 GhaliaHamouda · Jul 01, 2016 at 10:22 PM

Have you found a solution ?? .. I need it too much

@Zaif

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

82 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

Related Questions

Trying to move UI Elements but they are not working 1 Answer

Storing playerprefs as string in inputfield.text 1 Answer

Update and Get PlayerPrefs during runtime? 0 Answers

How to add colours to individual letters in an RPG text box scrolling 0 Answers

2D Object effect like Life is Strange? 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