Search found 9 matches

by davidlim
Tue Jun 04, 2019 10:42 pm
Forum: Feature Requests
Topic: - Post your Feature Requests in this thread -
Replies: 85
Views: 111016

Re: - Post your Feature Requests in this thread -

JSON minimization and compression, Work can be done to minimize the size of the json files. There are a lot of simple and complex string compression algorithems out ther ethat we can use to minify the amount of characters written to the file. using LZF with this free lib https://www.npmjs.com/packag...
by davidlim
Tue Jun 04, 2019 8:51 pm
Forum: General Discussion
Topic: Using ES3File in thread causes expection
Replies: 2
Views: 1933

Re: Using ES3File in thread causes expection

Great, looking forward to the PM so I can try this out. I'm using the 2019.3 Beta btw
by davidlim
Mon Jun 03, 2019 8:22 pm
Forum: General Discussion
Topic: Using ES3File in thread causes expection
Replies: 2
Views: 1933

Using ES3File in thread causes expection

Hello, I'm trying to create a new ES3File in a thread, I'm pointing to a File that has a single entry of a string so the data is thread safe but I'm getting the following error: GetAll can only be called from the main thread. Constructors and field initializers will be executed from the loading thre...
by davidlim
Sun Jun 02, 2019 1:00 pm
Forum: Feature Requests
Topic: - Post your Feature Requests in this thread -
Replies: 85
Views: 111016

Re: - Post your Feature Requests in this thread -

Hii, I would like to request some kind of streaming capability for files, this can either be a continue that loads X keys every Y time/frames or even more simply just expose some of the internal methods that already read via stream to allow us to implement this our selfs.
by davidlim
Sun Jun 02, 2019 9:52 am
Forum: General Discussion
Topic: Sequentially loading and writing with es3 ?
Replies: 3
Views: 2259

Re: Sequentially loading and writing with es3 ?

Hello Joel, thanks for the answer I am creating the ES3File instance when I load the data as the data needs to be loaded on scene load, my game has a bunch of cells each cell is a scene, if the player gets near the edge of the scene I load the next scene using loadSceneAsync, then on the awake metho...
by davidlim
Sat Jun 01, 2019 9:57 pm
Forum: General Discussion
Topic: Low performance with the ES3AutoSaveMgr awake method?
Replies: 0
Views: 4980

Low performance with the ES3AutoSaveMgr awake method?

Hello, When loading a scene async I get a really slow loading time, using the profiler I got this

Image It seems that the ES3AutoSaveMgr takes around 70% of the load time, I wonder What I'm doing wrong here as it makes little sense.
by davidlim
Sat Jun 01, 2019 3:17 pm
Forum: General Discussion
Topic: Sequentially loading and writing with es3 ?
Replies: 3
Views: 2259

Sequentially loading and writing with es3 ?

Hello I saw the feature in es2 but I cant seem to be able to do this in es3 and there is not write method that accepts only a value without a key. I tried using the ES3File but it seems a bit to slow (clocks at about 1 second to load my data) I'm sure it's fast after that (with the caching) but I ne...
by davidlim
Sat Jun 01, 2019 1:39 pm
Forum: General Discussion
Topic: Loading sprite when using more then one scene.
Replies: 5
Views: 3079

Re: Loading sprite when using more then one scene.

Ops, Ya I I'm using EasySave3, Should I open a new thread or can you move it ?
by davidlim
Fri May 31, 2019 11:40 pm
Forum: General Discussion
Topic: Loading sprite when using more then one scene.
Replies: 5
Views: 3079

Loading sprite when using more then one scene.

Hello, I have an issue trying to save and load sprites. I have a scene in which I save the tiles of a tilemap and load them according to the player position, this works, I get the sprite data: https://i.imgur.com/m3HfxBU.png as seen in this gif https://i.imgur.com/iPRN7z4.gifv The problom is when I ...