Пример #1
0
 /// <summary>
 /// Set the colour of the specified cell
 /// </summary>
 /// <param name="x">x position of cell, 0 is top left hand corner</param>
 /// <param name="y">y position of cell, 0 is top left hand corner</param>
 /// <param name="red">red intensity in range 0-255. Value is clamped in this range.</param>
 /// <param name="green">green intensity in range 0-255. Value is clamped in this range.</param>
 /// <param name="blue">blue intensity in range 0-255. Value is clamped in this range.</param>
 public static void SetPanelCell(int x, int y, int red, int green, int blue)
 {
     manager.SetPanelCell(x, y, red, green, blue);
 }