Ejemplo n.º 1
0
 private void OnMouseEnter()
 {
     if (UIPopAction.Showing)
     {
         return;
     }
     UITileSelector.ShowFor(transform);
     UITileStatus.ShowFor(tile);
     UIPopViewer.ShowPop(tile.GetPlayerPopulation(Match.ActivePlayer));
     HoverBrick = this;
 }
Ejemplo n.º 2
0
 private void OnMouseOver()
 {
     if (UIPopAction.Showing)
     {
         return;
     }
     if (HoverBrick != this)
     {
         HoverBrick = this;
     }
     UITileSelector.ShowFor(transform);
 }