If I use vps to place an object at a location, is the following scenario possible?
- User1 visits location and sees red object. Taps object and it turns yellow
- User2 visits location and sees yellow object. Taps object and it turns blue
- User3 visits location and sees blue object. Taps it and it turns green
Is it possible to save the results of a user’s interaction so the next user sees the results?
Hi, welcome to the forums!
This isn’t a built in capability, however I do think this would be a great addition to our sample project library.
If I were to build this I would set it up in the following way:
- Make a REST API to handle the data, and communicate with a Database.
- Send a request to the REST API that changes the data, and saves it to the DB.
- Make the client side 8th Wall experience periodically fetch from the API to check for any recent changes.
- React if there’s changes to be made.
1 Like