Readme.txt 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. # World Builder Sample Scene
  2. This a sample scene for the "World Builder" feature. This feature is still in
  3. experimental status, so use it with care!
  4. The basic idea of the "World Builder" is that you can add, place and adjust
  5. objects at runtime, and save the session so that it persists when the app is
  6. closed.
  7. This can be used to provide final users to create persistent experiences, or for
  8. developers to create experiences by manipulating objects "on-site", saving the
  9. resulting data to be loaded when the final user runs the app.
  10. In this sample, each time the app is closed, the World Session is serialized and
  11. saved on local storage; and each time opens, it loads the saved session and
  12. restores it. This is regulated by the "UseLocalStorege" option in the
  13. "WorldBuilder" component. If this is enabled, the session will be saved in local
  14. storage to a file named $"{id}.json". If you disable this option the session
  15. won't be saved or loaded automatically. In this case, you can use the `ToJson`
  16. and `FromJson` methods to serialize/deserialize the "World Session" manually.
  17. That way you can, for instance, save the session on a server via network
  18. requests, allowing for persistent world sessions in the cloud.
  19. The "World Builder Application Controller" is an implementation of a simple
  20. application that uses the World Builder to position and adjust objects. It can
  21. serve as a base for you to modify and customize it to your needs.
  22. This controller has a very simple UI. In the main view, you choose which one of
  23. the 3 prefabs you want to place in the world. To place them, just touch the
  24. screen on the location.
  25. After an object is placed, you can select it by touching the object. That will
  26. change the UI, which will now display buttons for object adjustment; you can
  27. adjust the y-axis rotation by dragging horizontally, move the object to another
  28. location by touching the screen, or change its height by dragging vertically.
  29. # Using a Web Server
  30. As it is, the scene is fully usable, and the session will be persistent via
  31. local storage.
  32. There is support for primitive server/network persistency in the
  33. `WorldBuilderApplicationController`. To use it, check the "Save To Server"
  34. option, and set the URLs for the save and load endpoints.
  35. There is an example server in this repository: https://github.com/dmbfm/unity-ar-gps-location-world-builder-server
  36. To use it on the field, you need to set up a live server running this as https.
  37. To test it locally, clone the repository, run:
  38. > npm install
  39. > npm start
  40. That will start a server on `http://localhost:3000` by default, but you can
  41. change the hostname and port by editing the `server.js` file.
  42. But you also need to tunell this server to a https endpoint. The easiest way to
  43. do that is to use ngrok (https://ngrok.com/). After downloading and settinup
  44. ngrok according to their instructions, run:
  45. > ngrok http 3000
  46. And that should create a tunnell with an adress like
  47. 'https://{some_id}.ngrok.io'. Then all you need to do is set "Save World URL"
  48. to:
  49. 'https://{some_id}.ngrok.io/save/'
  50. and "Restore World URL" to
  51. 'https://{some_id}.ngrok.io/world/'