June 2017
Beginner to intermediate
336 pages
8h 44m
English
Now we will create an Azure Bridge, which fetches the data from the services and maps it with the Building Data Model, which we have just defined in the preceding section:
As in the first step, we will make this class a Singleton to use only one instance of it. You can achieve this by just inheriting the class from the Singleton class, by passing the same class type as parameter:
public class AzureBridge : Singleton<AzureBridge> { // Use this for initialization void Start () { } // Update is called once per frame void Update () { }}
Read now
Unlock full access