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 /
avatar image
1
Question by mihairey · Oct 10, 2017 at 07:19 PM · unity 5c# tutorialshopcoins

How to save coins with PlayerPrefs

Hello,

I am trying to save coins in Unity but every time I hit play the coins strats from 0. The code from Script is this:

 public class CoinsManager : MonoBehaviour {
 
     Text coinsScore;
     public static int coinAmount;
     public static int coinsCount;
 
     void Start ()
     {
         coinsCount = PlayerPrefs.GetInt("Coins");
     }
 
     void Update()
     {
         coinsCount += coinAmount;
         coinsScore.text = "Coins: " + coinsCount;
         PlayerPrefs.SetInt("Coins", coinsCount);
     }

Thank you!

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

Answer by finlay_morrison · Oct 10, 2017 at 07:24 PM

Firstlygoing into playerprefs every frame is not a good idea, playerprefs takes quite a long time to acsess in computer terms (still in the order of milliseconds tho) Make sure you are using UnityEngine.UI , try using this code:

public class CoinsManager : MonoBehaviour {

  Text coinsScore;
  public static int coinAmount;
  public static int coinsCount;
 
  void Start ()
  {
      coinsCount = PlayerPrefs.GetInt("Coins");
  }
 
  void Update()
  {
      coinsCount += coinAmount;
      coinsScore.text = "Coins: " + coinsCount;
  }

   void OnApplicationQuit() {

    PlayerPrefs.SetInt("Coins", coinsCount);

}

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 mihairey · Oct 10, 2017 at 07:27 PM 0
Share

It's not working. Do you know another method to save coins? Thank you.

avatar image
1

Answer by Glurth · Oct 10, 2017 at 07:29 PM

 public static int coinAmount;

Static variables are NOT serialized along with the rest of the monobehavior. The Static keyword means you want to have only one instance of the variable, for ALL instance of the containing class.

However, I suspect you really want to have a single CoinsManager class in the scene, (rather than what you have now, a single "coinAmount" for all CoinsManagers in the scene.)

Google "unity singletons" for how to make sure you have only one CoinsManager in a scene.

This way, you can make your public static int coinAmount; NOT static: public int coinAmount; and it WILL be serialized by unity.

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

145 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 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

How do I get the platform to effect these coins? 2 Answers

How do I change the speed at which the slider moves? 5 Answers

please help, i have had this erroe for a long time:,Please help, i have had this issue for a long time. here is the error 0 Answers

Select a prefab from shop to Player - 2D Game 0 Answers

How to rotate object's y-axis with mouse position on screen ? 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