unity web player saving progress

anyone know how to save game progress in unity mode and how to retrieve Web

1 Answer

1

Have you seen this yet:

http://unity3d.com/support/documentation/Manual/Unity%20Web%20Player%20and%20browser%20communication.html

You would have to write a function in your code that calls a javascript function in your page using the Application.ExternalCall function. You could pass it some persistent data. The javascript function could make an http request to your server. Your server would have to save the data somehow. You can do similar things to load that data back.