protected void OnLinkRemoved(LinkData link)
 {
     if (Application.isPlaying && previousSelectedGameObject != null)
     {
         currentEditableConstellation.RemoveLink(link);
     }
 }
Ejemplo n.º 2
0
 protected void OnLinkRemoved(LinkData link)
 {
     if (Application.isPlaying && previousSelectedGameObject != null && ConstellationScript.IsInstance)
     {
         currentEditableConstellation.RemoveLink(link);
         ConstellationScript.IsDifferentThanSource = true;
     }
 }