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
0
Question by JeffreyReena · Apr 10, 2020 at 02:44 AM · javascriptscripting problemloading

How do i load my game data after being saved using Json

Hi Im new to unity. I am trying to save and load player data through JSON. My save method is working but I'm not able to load the saved data back. Here is my code

 using System.Collections;
 using System.Collections.Generic;
 using UnityEngine;
 using System.IO;
 
 [System.Serializable]
 public class PlayerData
 {
     [Header("Player Data")]
     public string username;
     public string email;
 
 }
 
 public class DataManager : MonoBehaviour {
 
     private static DataManager instance;
 
     [SerializeField]
     private PlayerData playerData;
 
     public static PlayerData PlayerData {
         get { return instance.playerData; }
     }
 
     private string jsonData;
     private bool isPlaying;
 
     void OnEnable() {
     }
 
     void OnDisable() {
     }
 
     void Awake() {
         if (!instance) {
             instance = this;
         } else {
             Destroy(this.gameObject);
         }
         DontDestroyOnLoad(this.gameObject);
     }
 
     private void Start() {
         isPlaying = true;
         ReadJsonData();
     }
 
     private void ReadJsonData(){
         //TextAsset textAsset = Resources.Load ("PlayerData") as TextAsset;
         //path = Application.persistentDataPath + "/PotionData.json";
         instance.jsonData = File.ReadAllText(Application.persistentDataPath + "/PotionData.json");
         instance.playerData = JsonUtility.FromJson<PlayerData> (instance.jsonData);
         Debug.Log(playerData.email);
     }
 
     public static void WriteJson(){
         if (instance.isPlaying) {
             //string filePath = Path.Combine(Application.persistentDataPath + "/PotionData.json");
             instance.jsonData = JsonUtility.ToJson (instance.playerData);
             //File.WriteAllText ("Assets/Resources/PlayerData.txt", instance.jsonData);
             File.WriteAllText (Application.persistentDataPath + "/PotionData.json", instance.jsonData);
             Debug.Log ("JSON data overwritten successfully");
             Debug.Log (instance.jsonData);
         }else{
             Debug.LogError ("JSON data overwrite only on play mode!");
         }
     }
 
     public void Load()
     {
         ReadJsonData();
     }
 }
 
 public enum SceneType {MainScene = 0, GameScene = 1}

Then I tried something other than that. but in this new code my Save data method works in unity editor but not working in build. In this new code data is not saved and loaded also. Below is the code

 using System.Collections;
 using System.Collections.Generic;
 using UnityEngine;
 using System.IO;
 
 [System.Serializable]
 public class PlayerData
 {
     [Header("Player Data")]
     public string username;
     public string email;
 
 }
 
 public class DataManager : MonoBehaviour {
 
     private static DataManager instance;
 
     [SerializeField]
     private PlayerData playerData;
 
     public static PlayerData PlayerData {
         get { return instance.playerData; }
     }
 
     private string jsonData;
     private bool isPlaying;
 
     void OnEnable() {
     }
 
     void OnDisable() {
     }
 
     void Awake() {
         if (!instance) {
             instance = this;
         } else {
             Destroy(this.gameObject);
         }
         DontDestroyOnLoad(this.gameObject);
     }
 
     private void Start() {
         isPlaying = true;
         ReadJsonData();
     }
 
     private void ReadJsonData(){
         TextAsset textAsset = Resources.Load ("PlayerData") as TextAsset;
         playerData = JsonUtility.FromJson<PlayerData> (textAsset.text);
         Debug.Log(playerData.email);
     }
 
     public static void WriteJson(){
         if (instance.isPlaying) {
             instance.jsonData = JsonUtility.ToJson (instance.playerData);
             File.WriteAllText ("Assets/Resources/PlayerData.txt", instance.jsonData);
             Debug.Log ("JSON data overwritten successfully");
             Debug.Log (instance.jsonData);
         }else{
             Debug.LogError ("JSON data overwrite only on play mode!");
         }
     }
 }
 
 public enum SceneType {Main = 0, Game = 1}

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

270 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 avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image 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

Scripting Help: Timer Problem 0 Answers

Problem with Javascript calling PHP pages in WebGL 0 Answers

Scripted tank track bones behave strange 0 Answers

Building on android. 1 Answer

Is jslib in Assetstore package allowed? 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