Search found 5 matches

by jcal
Wed Sep 22, 2021 7:45 pm
Forum: General Discussion
Topic: Editing a file on a server?
Replies: 3
Views: 853

Re: Editing a file on a server?

Hi there, You may be able to go into the MySQL table and manually edit the file. However, the intended purpose is that data in only edited using the Easy Save API, which would mean creating a Unity application to do this. All the best, Joel Now because it is stored in a server, I could have that Un...
by jcal
Wed Sep 22, 2021 7:18 pm
Forum: General Discussion
Topic: Editing a file on a server?
Replies: 3
Views: 853

Editing a file on a server?

I am in the process of setting up a server to host a file that can be accessed by app users. My hope is that when the app loads, they will sync with the cloud and the data in the cloud will be loaded onto the app. I plan for it to work like a mass email? Basically I want to be able to put in the clo...
by jcal
Fri Sep 17, 2021 2:08 pm
Forum: General Discussion
Topic: Difficulty loading images opened from an iPhone camera roll? A problem with references I guess.
Replies: 6
Views: 1415

Re: Difficulty loading images opened from an iPhone camera roll? A problem with references I guess.

Glad you're finding Easy Save useful. Let me know how you get on with the solution I suggested when you have a chance to try it :) All the best, Joel Yeah after countless pointless attempts and rewritings I got nowhere. The problem was never ES3, it was the way I was loading the texture from the OS...
by jcal
Mon Sep 13, 2021 9:30 pm
Forum: General Discussion
Topic: Difficulty loading images opened from an iPhone camera roll? A problem with references I guess.
Replies: 6
Views: 1415

Re: Difficulty loading images opened from an iPhone camera roll? A problem with references I guess.

Hi there, This will occur because you're saving the Texture by reference, but a reference to that Texture will no longer exist after you leave the scene. Instead you should save and load it directly (i.e. ES3.Save<Texture2D>("yourKey", yourTexture)) before loading your Dictionary to ensur...
by jcal
Sun Sep 12, 2021 10:59 pm
Forum: General Discussion
Topic: Difficulty loading images opened from an iPhone camera roll? A problem with references I guess.
Replies: 6
Views: 1415

Difficulty loading images opened from an iPhone camera roll? A problem with references I guess.

Currently saving and loading a dictionary that keeps track of a struct containing a string Name, float Rating, and sprite Image. The images are uploaded from a users iPhone camera roll into the project during runtime, so they are created dynamically. From my understanding of the errors this has gene...