color property

Vector4 get color

Linear RGBA color multiplied with the texture.

Implementation

Vector4 get color => _color;
set color (Vector4 value)

Implementation

set color(Vector4 value) {
  _color = value;
  _refresh();
}