Пример #1
0
 public void FinishMoveSetup()
 {
     this.transform.position = nextCell.transform.position;
     nextCell.rune           = this;
     currentCell             = nextCell;
     nextCell = currentCell.FindRuneNextCell();
 }
Пример #2
0
 public void StartMoveSetup()
 {
     nextCell         = currentCell.FindRuneNextCell();
     currentCell.rune = null;
     nextCell.rune    = this;
 }