This started as a quick hack so I could mess with the cell materials directly in the Unity editor, and quickly entrenched itself. Time to pull it out by the roots.
We should translate the display string directly into a material name, but a lot of those strings have special characters that don’t play nice with the file system.
So we’ll fall back on
ASCII codes:
if(!cellMaterials.ContainsKey(cells[v].DisplayGraphic)){StringmaterialName=StringToAsciiHex(cells[v].DisplayGraphic);MaterialcellMaterial=Resources.Load("Materials/Cells/"+materialName,typeof(Material))asMaterial;if(cellMaterial==null){print("Couldn't find material "+materialName+" for display graphic \""+cells[v].DisplayGraphic+"\"!");Debug.Break();}else{cellMaterials[cells[v].DisplayGraphic]=cellMaterial;}}rend.material=cellMaterials[cells[v].DisplayGraphic];rend.enabled=true;
We maintain a dictionary of cell materials so we don’t have to call Resources.Load for every cell. Now all we need is the materials:
Only a little less readable than my previous naming convention.
So now we can have:
…with no actual change in functionality, and it seems a bit faster, too!