Search found 4858 matches

by Joel
Sun Apr 21, 2013 10:25 am
Forum: (Legacy) Easy Save 2 Examples and Tutorials
Topic: Saving, Loading and Instantiating Prefabs
Replies: 5
Views: 75378

Saving, Loading and Instantiating Prefabs

Saving, Loading and Instantiating Prefabs In this example, we create a script which saves and loads prefabs. The main functions we use in this example are: Unity's Instantiate Function to create our prefabs ES2.Save ES2.Load self-assigning function, which loads the data into the Component supplied ...
by Joel
Fri Apr 19, 2013 12:11 pm
Forum: (Legacy) Easy Save 2 General Discussion
Topic: ES2 Web Questions
Replies: 1
Views: 5656

Re: ES2 Web Questions

Hi ltcastro, Easy Save is a saving method in its own right, so you do not use Playerprefs or PlayerprefsX. For the record, ES2 will automatically store data in Playerprefs on webplayer. Examples can be found HERE , including this example explaining how to save to web . Encryption can be used by spec...
by Joel
Fri Apr 05, 2013 9:10 pm
Forum: (Legacy) Easy Save 2 Examples and Tutorials
Topic: Creating 'Quit' & 'Continue' buttons with Easy Save
Replies: 2
Views: 45412

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

Creating 'Quit' & 'Continue' buttons with Easy Save This basic example shows how you can use GUIButtons to allow the user to Save and Load the state of the game. When the user presses 'Quit', it saves whichever variables we need to save. When they press 'Continue', it loads these variables. pub...
by Joel
Fri Apr 05, 2013 8:11 pm
Forum: (Legacy) Easy Save 2 General Discussion
Topic: ES2 and https://
Replies: 2
Views: 7255

Re: ES2 and https://

Hi Loadus, Saving to file is not supported by Webplayer. You can however save to PlayerPrefs by changing the save location. For example: ES2.Save(123, "myData.txt?savelocation=playerprefs"); int loaded = ES2.Load<int>("myData.txt?savelocation=playerprefs"); All the best, Joel
by Joel
Tue Mar 19, 2013 1:58 pm
Forum: (Legacy) Easy Save 2 General Discussion
Topic: ES2Web - Upload an Array
Replies: 2
Views: 7201

Re: ES2Web - Upload an Array

Hi again Ralph,

The example you requested is now available HERE.

All the best,
Joel
by Joel
Tue Mar 19, 2013 1:52 pm
Forum: (Legacy) Easy Save 2 Examples and Tutorials
Topic: Uploading/Downloading an int array using ES2Web
Replies: 0
Views: 34148

Uploading/Downloading an int array using ES2Web

Uploading an int array using ES2Web In this simple tutorial we will show you how to upload an int[] to the ES2 MySQL database on your server. We will create a method which accepts an int[] as a parameter, and automatically saves it to web when called. Will will also create a method which loads an i...
by Joel
Thu Mar 14, 2013 10:26 pm
Forum: (Legacy) Easy Save 2 General Discussion
Topic: ES2Web - FileName
Replies: 4
Views: 10126

Re: ES2Web - FileName

Hi again Ralph, There appears to be a problem in our implementation whereby the ES2Settings isn't recognising the specified filename. We'll get this fixed in the next update for you, but for the time being, could you do it using just path parameters, like this: string myURL = "http://rco.getmyi...
by Joel
Thu Mar 14, 2013 7:04 pm
Forum: (Legacy) Easy Save 2 General Discussion
Topic: ES2Web - FileName
Replies: 4
Views: 10126

Re: ES2Web - FileName

Hi Ralph, Could you please check that you are using the latest version Easy Save 2, and the latest version of the ES2.php file. You'll need to update via the Asset Store to do this. If this does not fix your problem, could you please paste the code you are using so we can try to replicate your probl...
by Joel
Thu Mar 14, 2013 7:01 pm
Forum: (Legacy) Easy Save 2 General Discussion
Topic: ES2Web - Upload an Array
Replies: 2
Views: 7201

Re: ES2Web - Upload an Array

Hi Ralph,

We'll arrange for an example of this to be added to the 'Examples' section of the forum as soon as possible.

All the best,
Joel
by Joel
Tue Mar 12, 2013 10:11 pm
Forum: (Legacy) Easy Save 2 General Discussion
Topic: ES2Web.Save() error
Replies: 4
Views: 10537

Re: ES2Web.Save() error

Hi again Loadus,

We've just realised that we've named the method wrong in the documentation; It should be SaveToFile(). I'm in the process of fixing it now.

Thanks for your patience!

Joel