Search found 22 matches

by Coldwynn
Thu Dec 15, 2022 3:49 pm
Forum: General Discussion
Topic: FormatException: Expected '{' or "null", found '5'
Replies: 4
Views: 890

Re: FormatException: Expected '{' or "null", found '5'

Try deleting your save data (Tools > Easy Save 3 > Clear PersistentDataPath) and see if this resolves the issue.
Unfortunately, it doesn't.

... I finally have a pared-down version that replicates the issue, I'll PM it to you. Thanks for looking into this.
by Coldwynn
Wed Dec 14, 2022 7:28 pm
Forum: General Discussion
Topic: Easy Save 3 Manager not in Menu
Replies: 2
Views: 675

Easy Save 3 Manager not in Menu

I was trying to recreate a separate issue and was building a new project. In the editor, I went to Window>Assets Store and opened Easy Save 3 in Unity; I imported all, did it twice and got the message that there was nothing to import on the second attempt, I then went to the "Assets" tab i...
by Coldwynn
Wed Dec 14, 2022 3:59 am
Forum: General Discussion
Topic: FormatException: Expected '{' or "null", found '5'
Replies: 4
Views: 890

Re: FormatException: Expected '{' or "null", found '5'

Additional, possibly important, information. The "5" found in the error report, is the first element of the nested array that is, in turn, the first item in the dictionary. This is how I constructed the dictionary: The dictionary is set up: public Dictionary<string, float[,]> playerStats =...
by Coldwynn
Tue Dec 13, 2022 10:41 pm
Forum: General Discussion
Topic: FormatException: Expected '{' or "null", found '5'
Replies: 4
Views: 890

FormatException: Expected '{' or "null", found '5'

Hi, I'm desperate. I can't track down this error - especially as it goes into ES3 scripts. I was hoping you've seen this before and can tell me where to look ... I don't even know what information is pertinent for you to figure out the error. Here's a screen shot of the Console: Screen Shot 2022-12-...
by Coldwynn
Sun Nov 27, 2022 3:49 pm
Forum: General Discussion
Topic: The name 'ES3' does not exist in the current context?
Replies: 15
Views: 7917

Re: The name 'ES3' does not exist in the current context?

You're right, there was some offending script-errors elsewhere. Sorry to bother you with my incomplete understanding.
by Coldwynn
Sun Nov 27, 2022 4:04 am
Forum: General Discussion
Topic: The name 'ES3' does not exist in the current context?
Replies: 15
Views: 7917

Re: The name 'ES3' does not exist in the current context?

Hi, Is there an incompatibility between ES3 and Unity 2021.3.14f1? I just switched to that version, and while my older projects seemed to work fine, the newer ones always come up with CS0103 ..."The name 'ES3' does not exist in the current context." Here's what I did to repeat the issue wi...
by Coldwynn
Fri Nov 04, 2022 4:48 pm
Forum: General Discussion
Topic: Reference ID not found and KeyNotFoundException
Replies: 3
Views: 716

Re: Reference ID not found and KeyNotFoundException

Oh my g..., that was embarrassing. Sorry about that.

However, when I fixed the offending typo, and run it, I still get this:

Image
by Coldwynn
Fri Nov 04, 2022 12:47 pm
Forum: General Discussion
Topic: Reference ID not found and KeyNotFoundException
Replies: 3
Views: 716

Reference ID not found and KeyNotFoundException

Hello, I hope someone can help me understand what I'm doing wrong. I have two scenes, in scene1, I define the default team name and logo - or, if the game has been run before, load the working team name and logo; then with a button click the user can switch to the a "work" scene (there are...
by Coldwynn
Mon Oct 31, 2022 4:17 pm
Forum: Code Examples
Topic: REQUEST EXAMPLES AND TUTORIALS HERE
Replies: 80
Views: 113647

Re: REQUEST EXAMPLES AND TUTORIALS HERE

Thank you for the clarifications. This was very helpful indeed. ... Now I have to teach myself how to use Easy Save 3 to save arrays (I'm trying to develop an American Football type game and so I have to save and load a minimum of 23 playing characters, each with 8 stats; the team playbook with as m...
by Coldwynn
Mon Oct 31, 2022 1:04 am
Forum: Code Examples
Topic: REQUEST EXAMPLES AND TUTORIALS HERE
Replies: 80
Views: 113647

Re: REQUEST EXAMPLES AND TUTORIALS HERE

I'm sorry, I'm afraid I don't understand what you mean by this. Could you clarify? This has to do with my, as of now, incomplete understanding of ES3.Load and ES3.LoadInto as applied to saved gameObjects or prefabs. I understand that with the ES3.Load an instance of the object is created, but when ...