예제 #1
0
파일: CellGrid.cs 프로젝트: joesycalik/LD42
 //Re-Triangulate the Cell grid to refresh properties
 private void LateUpdate()
 {
     if (triangulate)
     {
         cellMesh.Triangulate(cells);
         triangulate = false;
     }
 } //End LateUpdate()
예제 #2
0
 public void Start()
 {
     cellMesh.Triangulate(cells);
 }