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