Search found 25 matches

by 88888888
Tue Aug 03, 2021 8:39 pm
Forum: General Discussion
Topic: What is the best way to load all save files inside a folder?
Replies: 3
Views: 1013

Re: What is the best way to load all save files inside a folder?

Thank you. I didn't know about that :geek: but it takes .meta files too and makes array too big as those files are inside StreamingAssets folder.
by 88888888
Tue Aug 03, 2021 7:54 pm
Forum: General Discussion
Topic: What is the best way to load all save files inside a folder?
Replies: 3
Views: 1013

What is the best way to load all save files inside a folder?

Hi there. I need to know what is the best way to load all save files inside a folder? Is there any better way than creating a list of all saved .es3 files?
by 88888888
Sun Aug 01, 2021 2:18 pm
Forum: General Discussion
Topic: Easy Save can't create folders inside StreamingAssets folder!
Replies: 4
Views: 1824

Re: Easy Save can't create folders inside StreamingAssets folder!

Hi there, Just to clarify, because Unity has provided permission to write files to a directory, it doesn't mean they've also provided permissions to create sub-directories. This is defined at Unity's end, not ours, so you would need to contact them for more information on why they don't have this p...
by 88888888
Sun Aug 01, 2021 11:56 am
Forum: General Discussion
Topic: Easy Save can't create folders inside StreamingAssets folder!
Replies: 4
Views: 1824

Re: Easy Save can't create folders inside StreamingAssets folder!

We can save .es3 files on StreamingAsset on build version we do this to save some information about characters. Other player that going to play this game doesn't need to save anything there so it's a developers task for us and we use PC. We need to get character names at runtime and create a separat...
by 88888888
Sun Aug 01, 2021 12:41 am
Forum: General Discussion
Topic: Easy Save can't create folders inside StreamingAssets folder!
Replies: 4
Views: 1824

Easy Save can't create folders inside StreamingAssets folder!

Hi. I need to save some of my save files inside StreamingAssets folder but there is a problem that easy save can't create folders inside this folder! It can save .es3 files inside this folder but can't create folders. For example it can save with below path StreamingAssets\Test.es3 But can't save wi...
by 88888888
Mon Oct 28, 2019 9:30 pm
Forum: General Discussion
Topic: What is the best way to Save&Load GameObjects in hierarchy
Replies: 3
Views: 2027

Re: What is the best way to Save&Load GameObjects in hierarc

Hi there, The following script will do this. You simply need to drag the GameObjects you want to save the active states of into the gameObjects array of the script. This assumes that there is an Easy Save 3 Manager in your scene, and the GameObjects you are saving are in the reference manager. This...
by 88888888
Sat Oct 26, 2019 11:19 pm
Forum: General Discussion
Topic: What is the best way to Save&Load GameObjects in hierarchy
Replies: 3
Views: 2027

What is the best way to Save&Load GameObjects in hierarchy

Hi. Let say I have 20 missions inside my game and each mission stored inside a game object inside my game hierarchy. So what is the best way to disable and enable those game objects when I load my game?
by 88888888
Wed Oct 16, 2019 2:53 pm
Forum: General Discussion
Topic: Can I install ES3 Cloud on Webmin contol panel too?
Replies: 1
Views: 2668

Can I install ES3 Cloud on Webmin contol panel too?

Hi. I already installed ES3 Cloud on my CPanel but does it work with Webmin or other free alternative of CPanle too?
by 88888888
Wed Oct 09, 2019 12:06 pm
Forum: General Discussion
Topic: Can ES3 be used to sync position of characters?
Replies: 3
Views: 3396

Re: Can ES3 be used to sync position of characters?

Hi there, Would you be able to show me how you're doing this? I'm not sure how saving a bool could save the position of characters. If there's already data in the file then this will cause slowdown because it will have to perform a random-access operation in the file. Also note that performing IO o...
by 88888888
Tue Oct 08, 2019 8:13 pm
Forum: General Discussion
Topic: Can ES3 be used to sync position of characters?
Replies: 3
Views: 3396

Can ES3 be used to sync position of characters?

I just want do save and load a bool variable for this but everytime I save it inside my ssd drive reduces the game frame rates from 600 to 150 fps for seconds.