//Start looking for specified anchors
    public void FindAzureAnchor(string AnchorIDtoFind)
    {
        DebugWindowMessaging.Clear(); DebugWindowMessaging.Clear();
        //Provide list of anchor IDs to locate
        SetUpAnchorIDsToLocate();

        //Start watching for Anchors
        currentWatcher = CloudManager.CreateWatcher();
        Debug.Log("Azure anchors found!");
    }
Exemple #2
0
    //Start looking for specified anchors
    public void FindAzureAnchor(string AnchorIDtoFind)
    {
        OnFindASAAnchor?.Invoke();

        Debug.Log("Looking for anchor...");
        //Provide list of anchor IDs to locate
        SetUpAnchorIDsToLocate();

        //Start watching for Anchors
        currentWatcher = CloudManager.CreateWatcher();
    }