June 2017
Beginner to intermediate
336 pages
8h 44m
English
Connecting with the Web API and fetching the data to our application can be done in several ways. In this project, we will use UnityWebRequest to communicate with our backend services.
Once data gets downloaded by the DownloadHandler, we need to convert it from the JSON response to building model. The JsonUtility helps with that conversion.

Here is the AzureBridge class implemented with UnityWebRequest:
public class AzureBridge : Singleton<AzureBridge>{ public Building buildingModel; void Start() ...Read now
Unlock full access