Example #1
0
 public void ManagerListener(ChipBehaviour c)
 {
     Debug.Log($"player transition. {nowChip.ToStringDebug()} => {c}");
     if (nowChip.IsNextChip(c))
     {
         SetChip(c);
         nowChip.InvokeEvent(p);
         nowChip.PublishMessageLog(p.Command("UPDATE"));
     }
 }