Search found 4855 matches

by Joel
Thu Jan 22, 2015 11:16 am
Forum: (Legacy) Easy Save 2 General Discussion
Topic: saving files and users loading bad data
Replies: 6
Views: 3658

Re: saving files and users loading bad data

Just to confirm, this will be added in v2.48, which we're submitting for approval today.

- Joel
by Joel
Wed Jan 21, 2015 11:07 pm
Forum: (Legacy) Easy Save 2 General Discussion
Topic: Playmaker 1.8 Beta / Array Variables
Replies: 4
Views: 8252

Re: Playmaker 1.8 Beta / Array Variables

Hi there,

Thanks for the heads-up. We'll definitely look into this, and if they're saving arrays in a type-safe way, we'll add support for them. I know a lot of people who would be very happy to see this functionality.

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

Re: Saving with encryption including tags?

If you plan on changing encryption or Types in future updates, the way we advise doing this is using version numbers. So for example, you would keep a version number variable somewhere in your app, and also store this version number in your save file. When you come to load/save data, check that the ...
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: 3229

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: 3229

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: 9948

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: 3409

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: 9948

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: 3658

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: 9948

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...