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 $$anonymous$$ · Dec 05, 2015 at 11:41 PM · c#unity 5ui

Saved data gets overwritten

Hey all,

I have a small game here that saves your current score, all time high score, bosses defeated and all time bosses defeated to a file. all time high score and all time bosses defeated (should) ONLY update when current score > all time high score.

This works fine, all the data is loaded somewhat correctly. The only issue I have is, when the user scored less than their highscore, the UI element where I display this data, says that the all time high score is now 0 (even though it was a high number before death).

So to put it simply / some pseudo:
on death, call save()
in save: if current_score > high_score
high score = current_score
save save highscore, save current score, close file
else, just update the current score and save it to file

Anyone know why this could be? At first I though it was some logic when saving, but (unless my tired brain is getting the best of me), it seems pretty normal:

 public void Save() {
         FileStream file = File.Open(Application.persistentDataPath + "/playerscores.dat", FileMode.Open);
         SaveData data = new SaveData();
         if (obstacle_count > obstacle_high || boss_count > boss_high) {
             Debug.Log("AG DATA SAVED");
             data.boss_high = boss_count;
             data.obstacle_high = obstacle_count;
         }
         data.obstacle_count = obstacle_count;
         data.boss_count = boss_count;
 
 
         binfor.Serialize(file, data);
         file.Close();
     }

And the death menu loads like this:

 public void Load() {
         if (File.Exists(Application.persistentDataPath + "/playerscores.dat")) {
             Debug.Log("PAUSE MENU DATA LOADED");
             FileStream file = File.Open(Application.persistentDataPath + "/playerscores.dat", FileMode.Open);
             SaveData data = (SaveData)binfor.Deserialize(file);
             file.Close();
 
             boss_high = data.boss_high;
             obstacle_high = data.obstacle_high;
             obstacle_count = data.obstacle_count;
             boss_count = data.boss_count;
         }
     }

((load gets called as soon as the scene is loaded))
Any help is appreciated! Thanks :)

Here's a youtube video demonstrating it:
https://www.youtube.com/watch?v=sm27i7vwzgg&feature=youtu.be

A temporary workaround to make sure data gets save is using PlayerPrefs, which works fine. Not sure if I want to use it though. It's good practice to use serializable data, no?

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

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

50 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

Related Questions

Stop previous coroutine and start new one from beginning 1 Answer

[SOLVED]My UI text don't update from script 3 Answers

Need alternative for onEndEdit on InputField 2 Answers

Level Selector - Level Images for Brick Breaker 2 Answers

[HELP] To show wave number on a zombie survival game. 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