Search found 8 matches

by ForemanDesigns
Thu Apr 29, 2021 4:54 pm
Forum: General Discussion
Topic: How to use Easy Save with Oculus Cloud Storage 2?
Replies: 9
Views: 1972

Re: How to use Easy Save with Oculus Cloud Storage 2?

Great! I've verified that Oculus Cloud Storage 2 is now working correctly with Easy Save. 5 stars on the asset store from me! Thanks for your help, Joel! :)
by ForemanDesigns
Thu Apr 29, 2021 3:24 pm
Forum: General Discussion
Topic: How to use Easy Save with Oculus Cloud Storage 2?
Replies: 9
Views: 1972

Re: How to use Easy Save with Oculus Cloud Storage 2?

Oh, of course! Easy fix. It might be a good idea to add a check for this and a descriptive error message in the log, to help users who make a silly mistake like this. :) Question - can the filename be any extension? For example, could I name it "SaveData.sav"? Could it even work without a ...
by ForemanDesigns
Wed Apr 28, 2021 9:33 pm
Forum: General Discussion
Topic: How to use Easy Save with Oculus Cloud Storage 2?
Replies: 9
Views: 1972

Re: How to use Easy Save with Oculus Cloud Storage 2?

Joel,

I have private messaged you a new project with the error reproduced (I've confirmed that I get the same error in the new project).

Thank you for looking into it!
by ForemanDesigns
Wed Apr 28, 2021 8:55 pm
Forum: General Discussion
Topic: How to use Easy Save with Oculus Cloud Storage 2?
Replies: 9
Views: 1972

Re: How to use Easy Save with Oculus Cloud Storage 2?

Joel, Thanks for the reply! Unfortunately I have run into another issue during my implementation of your advice. Because the save file path will be different for various platforms, I decided to create a static class 'SaveSystemBridge' that takes care of setting things up and allows me to use a gener...
by ForemanDesigns
Wed Apr 28, 2021 6:22 am
Forum: General Discussion
Topic: How to use Easy Save with Oculus Cloud Storage 2?
Replies: 9
Views: 1972

How to use Easy Save with Oculus Cloud Storage 2?

Hello, When building for Oculus Quest, I'd like for Easy Save to save and load files from the Oculus Cloud Storage 2 directory: https://developer.oculus.com/documentation/unity/ps-cloud-storage/ This way, my save file can persist between devices and can persist if the game is uninstalled and re-inst...
by ForemanDesigns
Sat Apr 24, 2021 9:52 pm
Forum: General Discussion
Topic: Incorrect saving/loading of string (a URL) results in: FormatException: Expected '{' or "null", found '"'. When loading.
Replies: 4
Views: 983

Re: Incorrect saving/loading of string (a URL) results in: FormatException: Expected '{' or "null", found '"'. When load

Joel wrote: Wed Apr 21, 2021 4:13 pm Hi there,

This is called character escaping, and is part of the JSON specification to ensure that strings don't break the formatting of the file.

All the best,
Joel
Great, thank you for the explanation, Joel! Much appreciated. :D
by ForemanDesigns
Wed Apr 21, 2021 4:07 pm
Forum: General Discussion
Topic: Incorrect saving/loading of string (a URL) results in: FormatException: Expected '{' or "null", found '"'. When loading.
Replies: 4
Views: 983

Re: Incorrect saving/loading of string (a URL) results in: FormatException: Expected '{' or "null", found '"'. When load

Hi there, I don't appear to be getting this error at my end. I tried to replicate this with the following code: using UnityEngine; public class SaveURLTest : MonoBehaviour { void Start() { ES3.Save("url", "https://d1a370nemizbjq.cloudfront.net/24c09e08-f879-4147-9b27-6b05473c5b58.glb...
by ForemanDesigns
Tue Apr 20, 2021 10:04 pm
Forum: General Discussion
Topic: Incorrect saving/loading of string (a URL) results in: FormatException: Expected '{' or "null", found '"'. When loading.
Replies: 4
Views: 983

Incorrect saving/loading of string (a URL) results in: FormatException: Expected '{' or "null", found '"'. When loading.

I am trying to use Easy Save to save a URL, and load it when the game is started. Very basic. I am using the latest version of Easy Save and the code given on this page: https://docs.moodkie.com/easy-save-3/getting-started/ However, I am getting an error. Here is the input string (a URL for an avata...