Search found 10 matches

by General Jewel
Thu Feb 02, 2017 1:05 am
Forum: General Discussion
Topic: Does your game use Easy Save? Let us know!
Replies: 32
Views: 304138

Re: Does your game use Easy Save 2? Let us know!

I used EasySave 2 for my level editor in my game Cubemetry Wars! It saves and loads instantiated objects. It can be downloaded from Google Play and the App store.

https://play.google.com/store/apps/deta ... D&hl=en_GB

https://appsto.re/gb/zbJ5eb.i
by General Jewel
Fri Oct 07, 2016 7:15 pm
Forum: (Legacy) Easy Save 2 General Discussion
Topic: Is this a Window Phone Error?
Replies: 1
Views: 6931

Is this a Window Phone Error?

Hi I was wondering if EasySave is causing this error? As I see some EasySave file names in there. Works perfectly on iOS and Android trying to make a windows phone version aswell but keep getting this build error in Visual Studio 2015. Thank you. Build Windows Store - SDK Windows Phone 8.1 - Unity 4...
by General Jewel
Mon Feb 01, 2016 12:00 am
Forum: (Legacy) Easy Save 2 General Discussion
Topic: Attempting To Save With Automatic Save Structure
Replies: 13
Views: 30164

Re: Attempting To Save With Automatic Save Structure

Creating an Automatic Save Structure is the best example to use for this. Of course, you will need to customise it for your exact project, but it should give you the basics. We're actually working on an Editor extension at the moment which will allow you to achieve the same thing without any coding...
by General Jewel
Mon Dec 07, 2015 12:50 am
Forum: (Legacy) Easy Save 2 General Discussion
Topic: Attempting To Save With Automatic Save Structure
Replies: 13
Views: 30164

Re: Attempting To Save With Automatic Save Structure

Hello hope you are well. Just a quick question if there is a landscape that is generated by perlin noise and the player is allowed to place and remove blocks ( like minecraft ) which is done by a raycast when it hits a surface it creates a block or alternatively when it hits a surface it removes a b...
by General Jewel
Mon Oct 12, 2015 9:49 pm
Forum: (Legacy) Easy Save 2 General Discussion
Topic: Attempting To Save With Automatic Save Structure
Replies: 13
Views: 30164

Re: Attempting To Save With Automatic Save Structure

The error you're receiving is due to one of the objects you're saving being destroyed, but not being removed from the List of objects to save in the Save Manager. Are you destroying objects elsewhere in your code? The quickest solution to this would be to simply check that an object hasn't been des...
by General Jewel
Sun Oct 11, 2015 3:52 pm
Forum: (Legacy) Easy Save 2 General Discussion
Topic: Attempting To Save With Automatic Save Structure
Replies: 13
Views: 30164

Re: Attempting To Save With Automatic Save Structure

Hi there, You should simply be able to get an instance of the script containing the Save() method, and then call the Save() method when the user presses the button. You may need to make the Save() method public rather than private. All the best, Joel This is exactly what I did at first but still ex...
by General Jewel
Sat Oct 10, 2015 8:35 pm
Forum: (Legacy) Easy Save 2 General Discussion
Topic: Attempting To Save With Automatic Save Structure
Replies: 13
Views: 30164

Re: Attempting To Save With Automatic Save Structure

Hi Joe Just to let you know using the Automated Save Structure I have got a basic save system going so thank you. I can now save instantiated prefab objects and delete them for my game's level editor etc For those wondering I used this to instantiate prefabs UniqueObjectManager.InstantiatePrefab (&q...
by General Jewel
Mon Oct 05, 2015 8:54 pm
Forum: (Legacy) Easy Save 2 General Discussion
Topic: Attempting To Save With Automatic Save Structure
Replies: 13
Views: 30164

Re: Attempting To Save With Automatic Save Structure

Thank you for your response. Your support is amazing. I have played around with the Easy Save asset and managed to save simple things that are in the scene already. Also implemented the instantiate prefab example and it does save as well. Although I was wondering if there is a very simple way to do ...
by General Jewel
Sun Oct 04, 2015 2:49 pm
Forum: (Legacy) Easy Save 2 General Discussion
Topic: Attempting To Save With Automatic Save Structure
Replies: 13
Views: 30164

Attempting To Save With Automatic Save Structure

Using this tutorial attempting to save and load objects run time objects. http://www.moodkie.com/forum/viewtopic.php?f=4&t=522 1.Add a UniqueObjectManager and UniqueSaveManager script to the scene. 2.Add a UniqueID script to each of the prefabs you want to create at runtime and set the UniqueID'...
by General Jewel
Sat Sep 26, 2015 9:25 pm
Forum: (Legacy) Easy Save 2 Examples and Tutorials
Topic: Creating 'Quit' & 'Continue' buttons with Easy Save
Replies: 2
Views: 43362

Re: Creating 'Quit' & 'Continue' buttons with Easy Save

Hi I want to do something like this in my game where users can press the save button to save a level and load also. I made a simple level editor in my game where users can instantiate prefab objects that can be dragged around to make simple levels. These objects are simple and consist of rigidbodies...