Public classes
Controller |
Display_Sprite
Display where dots are based on flat sprites that change colors when turning on and off. Properties
Methods
Properties public int ColorCount Gets or sets the count of colors this display's dots can have. Default and minimum is two colors.
public Vector2 DotSize Size of single dot.
public Color OffColor Color of single dot sprite when it is turned to off-state (color 0). This have same effect than using SetColor(0,Color) or GetColor(0,Color) methods and is here for backward compatibility.
public Color OnColor Color of single dot sprite when it is turned to on-state (color 1). This have same effect than using SetColor(1,Color) or GetColor(1,Color) methods and is here for backward compatibility.
Methods public Color GetColor (int state) Gets color used in dot sprites when dot state is set to 'index'.
public void SetColor (int state, Color color) Sets color used in dot sprites when dot state is set to 'index'.
|