예제 #1
0
파일: Rune.cs 프로젝트: rubyleehs/hex_Gryo
 public void FinishMoveSetup()
 {
     this.transform.position = nextCell.transform.position;
     nextCell.rune           = this;
     currentCell             = nextCell;
     nextCell = currentCell.FindRuneNextCell();
 }
예제 #2
0
파일: Rune.cs 프로젝트: rubyleehs/hex_Gryo
 public void StartMoveSetup()
 {
     nextCell         = currentCell.FindRuneNextCell();
     currentCell.rune = null;
     nextCell.rune    = this;
 }