Search found 8 matches

by Lordinarius
Tue Mar 13, 2018 7:33 pm
Forum: (Legacy) Easy Save 2 General Discussion
Topic: ES3 File not found exception on LoadRawByte or LoadRawStr..
Replies: 1
Views: 3288

ES3 File not found exception on LoadRawByte or LoadRawStr..

Hi i am getting this exception whenever i call LoadRawByte or LoadRawString on ES3File object here stacktrace. FileNotFoundException: C:/Users/UUUU/AppData/LocalLow/DefaultCompany/ES3Manager/USR_DATA/MYFILE.ISF.tmp does not exist System.IO.File.Move (System.String sourceFileName, System.String destF...
by Lordinarius
Sun Feb 18, 2018 8:46 am
Forum: General Discussion
Topic: Unity 2017.3 still not happy with ES3 beta
Replies: 9
Views: 14123

Re: Unity 2017.3 still not happy with ES3 beta

Joel wrote:Hi there,

If you PM me your invoice number I'll send you over a patch to fix these errors right away. They will be included in the next major update, which we're still working on.

All the best,
Joel
Hello Joel, I've send pm.
by Lordinarius
Mon Mar 06, 2017 9:21 pm
Forum: (Legacy) Easy Save 2 General Discussion
Topic: Updating custom class save after game release
Replies: 8
Views: 13996

Re: Updating custom class save after game release

Hi there, Adding support for a type means that the data is read sequentially to maximise performance. The disadvantage of this is that the structure of the ES2Type needs to match that of the file. To achieve what you require, there are a number of ways you can approach it. The easiest way might be ...
by Lordinarius
Fri Mar 03, 2017 11:47 am
Forum: (Legacy) Easy Save 2 General Discussion
Topic: Can i use tags during ES2 serialization pipline working ?
Replies: 2
Views: 4553

Re: Can i use tags during ES2 serialization pipline working

I made a search in the forum. Now i understand that i can't do that. During ES2Type read write Sequential reading needed :)
by Lordinarius
Fri Mar 03, 2017 11:22 am
Forum: (Legacy) Easy Save 2 General Discussion
Topic: Can i use tags during ES2 serialization pipline working ?
Replies: 2
Views: 4553

Can i use tags during ES2 serialization pipline working ?

Hello I am trying to serialize arrays independend from their index so even when i change index of an item it loads from its ID. Tried it with using ES2Writer and ES2Reader and it works perfect But i tried it implementing in ES2Type and got an error so here is how i am doing it public class ES2UserTy...
by Lordinarius
Tue Jun 14, 2016 7:41 pm
Forum: (Legacy) Easy Save 2 General Discussion
Topic: How to save derived classes
Replies: 3
Views: 6520

Re: How to save derived classes

Hello again, i did some improvements with the code. Didn't try on mobile yet but it should work on it. You need parameterless constructor for each derived classes. This is my ES2 Type for base class public override void Write(object obj, ES2Writer writer) { Basec data = (Basec)obj; Type type = data....
by Lordinarius
Tue Jun 14, 2016 3:13 pm
Forum: (Legacy) Easy Save 2 General Discussion
Topic: How to save derived classes
Replies: 3
Views: 6520

Re: How to save derived classes

Thanks. At least, type depended control is better than giving id.
by Lordinarius
Tue Jun 14, 2016 2:44 pm
Forum: (Legacy) Easy Save 2 General Discussion
Topic: How to save derived classes
Replies: 3
Views: 6520

How to save derived classes

Hello I am trying to save derived classes but couldn't find a proper solution yet. Base > Derived I have a Base class list and generating this list on runtime randomly. So i don't know what derived class does it contain. I found a temporary solution but it is a bad workaround i think. I am just givi...