Kethane.UserInterface.OverlayRenderer.setCellColor C# (CSharp) 메소드

setCellColor() 개인적인 정적인 메소드

private static setCellColor ( Cell cell, Color32 color, Color32 colors ) : void
cell Cell
color UnityEngine.Color32
colors UnityEngine.Color32
리턴 void
        private static void setCellColor(Cell cell, Color32 color, Color32[] colors)
        {
            var idx = cell.Index * 6;
            for (var i = idx; i < idx + 6; i++)
            {
                colors[i] = color;
            }
        }