コード例 #1
0
 private void AddToStack(Stack <Vector2> reversePath)
 {
     if (parent.step != step)
     {
         reversePath.Push(step);
         parent.AddToStack(reversePath);
     }
 }