Ejemplo n.º 1
0
 void Update()
 {
     if (Input.GetKeyDown(KeyCode.B))
     {
         CreatePlanet();
         CellularAutomata.IterateHexaSphere(ref hexaSphere, birth, death, iterationCount);
     }
 }
Ejemplo n.º 2
0
 void Start()
 {
     CreatePlanet();
     CellularAutomata.IterateHexaSphere(ref hexaSphere, birth, death, iterationCount);
 }