Kethane.UserInterface.OverlayRenderer.SetCellColors C# (CSharp) Метод

SetCellColors() публичный Метод

public SetCellColors ( CellMap assignments ) : void
assignments CellMap
Результат void
        public void SetCellColors(CellMap<Color32> assignments)
        {
            setCellColors(assignments);
        }

Same methods

OverlayRenderer::SetCellColors ( Color32>.IDictionary assignments ) : void

Usage Example

Пример #1
0
        private void refreshCellColors()
        {
            var data   = KethaneData.Current;
            var colors = new CellMap <Color32>(KethaneData.GridLevel, c => getCellColor(c, body, data));

            overlayRenderer.SetCellColors(colors);
        }
All Usage Examples Of Kethane.UserInterface.OverlayRenderer::SetCellColors