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 DigitalCyclone · Nov 10, 2016 at 03:58 PM · unity 5saveload

Unity save system only works once.

Hello! I had enough of this problem and I can't seem to find a solution to it, so I need help.

I recently made a save system in my game, but no matter what I do, this always happens...

By the way, my shift keys are very lazy and always take breaks from working, so please excuse me for that.

anyways, whenever I play my game and stop playing it, then I go back to it, it will always load. However, whenever I go back to playing it for the second time, it always starts from the beginning and acts like nothing is saved. This is very frustrating. Here's the code to my save system:

 using UnityEngine;
 using System.Runtime.Serialization.Formatters.Binary;
 using System;
 using System.IO;
 
 public static class SaveLoad {
 
 public static void Save() {
         BinaryFormatter bf = new BinaryFormatter();
         if(!Directory.Exists(Application.persistentDataPath + "/saves")) {
             Directory.CreateDirectory(Application.persistentDataPath + "/saves");
         }
         FileStream file = new FileStream(Application.persistentDataPath + "/saves/save.dat", FileMode.Create);
 
         PlayerData data = new PlayerData();
 
         bf.Serialize(file, data);
 
         file.Close();
 }
 
 public static float[] Load() {
 if(File.Exists(Application.persistentDataPath + "/saves/save.dat")) {
             BinaryFormatter bf = new BinaryFormatter();
             FileStream file = new FileStream(Application.persistentDataPath + "/saves/save.dat", FileMode.Open);
 
             PlayerData data = bf.Deserialize(file) as PlayerData;
 
             file.Close();
 
             return data.stats;
 }else {
             float[] thing = new float[16];
             thing[0] = 10.288f;
             thing[1] = -0.6983222f;
             thing[5] = 1f;
             thing[6] = 1f;
             thing[8] = 50f;
             thing[10] = 418f;
             thing[11] = -88.06059f;
             thing[15] = 3f;
             return thing;
 }
 }
 
 public static void DeleteSave() {
 if(CheckIfFileExists()) {
             File.Delete(Application.persistentDataPath + "/saves/save.dat");
 }
 }
 
 public static bool CheckIfFileExists() {
         if (File.Exists(Application.persistentDataPath + "/saves/save.dat"))
             return true;
         else
             return false;
 }
 
 }
 
 [Serializable]
 public class PlayerData {
     public float[] stats;
 
     public PlayerData() {
         stats = new float[16];
         stats[0] = VariableStore.spaceCraftX;
         stats[1] = VariableStore.spaceCraftZ;
         stats[2] = VariableStore.spaceRotX;
         stats[3] = VariableStore.spaceRotY;
         stats[4] = VariableStore.spaceRotZ;
         stats[5] = VariableStore.health;
         stats[6] = VariableStore.volume;
         stats[7] = VariableStore.quality;
         stats[8] = VariableStore.currency;
         stats[9] = VariableStore.bounty;
         stats[10] = VariableStore.malacticaX;
         stats[11] = VariableStore.malacticaZ;
         stats[12] = VariableStore.malacticaRotY;
         stats[13] = VariableStore.sawStory;
         stats[14] = VariableStore.currentHat;
         stats[15] = VariableStore.currentSuit;
     }
 }

Please help!

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

116 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

Related Questions

How to read specific line with Streamreader in c#? 1 Answer

How do I recover my project? 0 Answers

how to save image in app IOS 0 Answers

PlayerPrefs saving and Loading 2 Answers

Save Transform and other Information into Binary File 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