colored mesh made

have a single mesh that changes color based on keyboard input. needs to be  made for each cell and have color based on cell-value
This commit is contained in:
Simon O'Shea
2023-08-03 15:55:52 -04:00
parent 78c5f3689c
commit e6bd6d2c58
6 changed files with 150 additions and 10 deletions
@@ -13,7 +13,7 @@ public class Main : MonoBehaviour
void Start()
{
// Create world
world = new LogicGrid(5, 5, 10f, new Vector3(-10, -30));
world = new LogicGrid(5, 5, 10f, new Vector3(0, 0));
// Set default placement to Obstacle
placementValue = -1;