Example #1
0
 private void UpdateShapeColor(int i)
 {
     cfg.shapeColor = PastelColorFactory.GetColor(ShapeColorDropdown.options[i].text);
 }
Example #2
0
 private void SetShapeColor(GameObject sender, string newValue, int index)
 {
     cfg.shapeColor = PastelColorFactory.GetColor(newValue);
 }
Example #3
0
 private void UpdateLineColor(int i)
 {
     cfg.brushColor = PastelColorFactory.GetColor(LineColorDropdown.options[i].text);
 }