Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 13 Next capture
2021 2022 2023
1 capture
13 Jun 22 - 13 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 Jerlovesgames · Aug 24, 2013 at 03:36 AM · javascriptvariableplayerprefsboolean

How to stop a boolean from going back to false

Hey, so right now I'm making the Unlocking Ships sections of my game. The process basically works by the camera looking at a ship, finding out how much it costs, and then if you have equal to or more money (set in PlayerPrefs) than the cost of the ship, you have the option of buying it.
Once you buy the ship, the boolean value that determines if a ship is unlocked or not (`shipUnlocked : boolean[]`) is set to true, and you then have the option of using that ship or not.
My problem is that if you close out of the game and reopen, the shipUnlock boolean will default back to false, and your ship is no longer unlocked, but you've still spent the money to unlock it.
Does anyone know of a way of stopping boolean variables from resetting?

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 perchik · Aug 24, 2013 at 03:43 AM

Any boolean that is not explicitly set at runtime starts as false. When you run the game, it changes but when the game is closed, those changes are lost in cyberspace. The next time you run the game, the game creates a new boolean initialized to false.

All that said, the answer is in your question itself. Just save whether the ship is unlocked as a player prefs, although you'll have to cast it to zero or one.

PlayerPrefs.SetInt("ShipUnlocked", 1); // true

and to access:

 if(PlayerPrefs.HasKey("ShipUnlocked"){
    shipUnlocked == PlayerPrefs["ShipUnlocked"] 
    if(shipUnlocked ==1) //then the ship was unlocked previously`
 }

Although you could just set anything for the key and then check to see if playerprefs has that key. (but then if the ship has to be locked again, you would have to remove the key from playerprefs)

Player Prefs persist over multiple instances of the game. A better example of this is a string. The first time you play a game, you might get prompted to enter a user name, that could then be stored in player prefs. After that, whenever the game runs you can set the username to whatever the playerpref was.

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 Jerlovesgames · Aug 24, 2013 at 12:58 PM 0
Share

Genius! Thank you so much. I didn't even know about Has$$anonymous$$ey, this is going to help so much.

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

16 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

Related Questions

Yield Waitforseconds not working at all 3 Answers

void cannot be used in a boolean context 1 Answer

Static Variable Problem 1 Answer

Change Variable on Another Script 2 Answers

Toggle Boolean Function 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