refactor: Hex, cell

cell - delete
Hex - refactor, feature
State: stable

В Hex перенесен функционал из cell.
This commit is contained in:
2026-01-16 22:36:32 +03:00
parent 4ffdf964a7
commit e4e834d373
7 changed files with 104 additions and 82 deletions

View File

@@ -17,7 +17,7 @@ public class perlinNoise : MonoBehaviour
void Start()
{
if(seed == -1) { seed = (int) (Random.value * 1000000000); }
if(seed == -1) { seed = (int) (Random.value * int.MaxValue); }
Debug.Log(seed);
Random.InitState(seed);