Search found 4852 matches

by Joel
Wed Jan 21, 2015 3:22 pm
Forum: (Legacy) Easy Save 2 General Discussion
Topic: Saving with encryption including tags?
Replies: 5
Views: 3223

Re: Saving with encryption including tags?

Ah, well Happy Birthday from everyone here at Moodkie, and thank-you very much for the purchase!

If you need any help adding support for your own types then let me know and I'll see what I can do.

- Joel
by Joel
Wed Jan 21, 2015 3:02 pm
Forum: (Legacy) Easy Save 2 General Discussion
Topic: Saving with encryption including tags?
Replies: 5
Views: 3223

Re: Saving with encryption including tags?

Hi there, It's not possible to encrypt the tags because otherwise we'd have to decrypt every tag before being able to traverse the file, which would be extremely slow. And that's correct, if you enable Encryption by default it will automatically encrypt everything that you save. We're actually addin...
by Joel
Wed Jan 21, 2015 9:27 am
Forum: (Legacy) Easy Save 2 General Discussion
Topic: save location not working
Replies: 17
Views: 9921

Re: save location not working

If the File Editor isn't appearing under the Assets > Easy Save 2 menu, it may be that the Asset Store imported Easy Save incorrectly, so it would firstly be worth reinstalling it. To do this, delete the Assets/Easy Save 2/ and Assets/Plugins/Easy Save 2/ folders, and then reinstall from the Asset S...
by Joel
Tue Jan 20, 2015 11:55 pm
Forum: (Legacy) Easy Save 2 General Discussion
Topic: PlayMaker Actions Add int / float
Replies: 4
Views: 3401

Re: PlayMaker Actions Add int / float

Hi Dino, Here are the class implementations for Save Int and Load Int, though I'm afraid we won't be able to add any custom actions you make to our project. [ActionCategory("Easy Save 2")] public class LoadInt : ES2LoadAction { [RequiredField] [Tooltip("The data we we want to load.&qu...
by Joel
Tue Jan 20, 2015 11:52 pm
Forum: (Legacy) Easy Save 2 General Discussion
Topic: save location not working
Replies: 17
Views: 9921

Re: save location not working

Easy Save saves data in a binary format (as this is significantly faster than any other format), so the data there is not encrypted, it's just not displayable in your text editor. Easy Save files aren't intended to be edited manually, and should only be modified using Easy Save 2 or Easy Save 2's Fi...
by Joel
Tue Jan 20, 2015 10:35 pm
Forum: (Legacy) Easy Save 2 General Discussion
Topic: saving files and users loading bad data
Replies: 6
Views: 3643

Re: saving files and users loading bad data

Hi there, Unfortunately because Playmaker has no way of catching exceptions (which is the way in which you catch errors in an application), there's not currently away around this. However, I'll see about adding an error event in v2.48 which will let you manage any errors should one occur. All the be...
by Joel
Tue Jan 20, 2015 10:32 pm
Forum: (Legacy) Easy Save 2 General Discussion
Topic: save location not working
Replies: 17
Views: 9921

Re: save location not working

You should leave the 'Default PC data path' entirely blank, and only specify a filename when saving/loading. For example, this code: ES2.Save(123, "myFile.txt?tag=myTag"); Will save a tag called myTag with a value of 123 to a file named myFile.txt in the default save path. The default save...
by Joel
Tue Jan 20, 2015 5:52 pm
Forum: (Legacy) Easy Save 2 General Discussion
Topic: Easy Save 2 File Editor available in v2.56!
Replies: 15
Views: 11054

Re: Easy Save 2 File Editor available in v2.56!

Very strange, not sure we've encountered this error before. We'll add some failsafes to try to catch any errors and see if I can get it to provide better debugging info next time it happens. It does seem like Unity is trying to reinitialise the instance variables, which is really shouldn't be doing,...
by Joel
Tue Jan 20, 2015 10:02 am
Forum: (Legacy) Easy Save 2 General Discussion
Topic: save location not working
Replies: 17
Views: 9921

Re: save location not working

Hi there, We strongly advise that you only save to the default save path (i.e. only specify a filename) as this is the only place which is guaranteed to exist and have the correct security privileges. You can output the location of this path to console using this line of code: Debug.Log(Application....
by Joel
Sun Jan 18, 2015 9:28 pm
Forum: (Legacy) Easy Save 2 General Discussion
Topic: Easy Save 2 File Editor available in v2.56!
Replies: 15
Views: 11054

Re: Easy Save 2 File Editor available in v2.56!

Thanks for the info Dino, it's much appreciated!

We've only used Playmaker in a few of our products so it's very helpful to get more information from people with more experience with it such as yourself. I'll be sure to have the UIHint added in v2.48.

All the best,
Joel