Beispiel #1
0
 private void SelectionClickedListener(SelectionManager.EventArgs arg0)
 {
     if (arg0.CurrentSelectedElement != null)
     {
         var element = arg0.CurrentSelectedElement.GetRootObj().GetComponent <IPredicate>();
         if (element != null)
         {
             _instance = element;
         }
     }
     ValidateOverlay();
 }
    private void SelectionUnclickedListener(SelectionManager.EventArgs arg0)
    {
        _instance = null;

        ValidateOverlay();
    }