fromRGBA(int r, int g, int b, int a) { this.r = r / 255; this.g = g / 255; this.b = b / 255; this.a = a / 255; return this; }