-
Notifications
You must be signed in to change notification settings - Fork 0
4. Color
DenisC edited this page Oct 14, 2023
·
1 revision
import { ..., Color } from '../je/index.js'; const color = Color.create(r, g, b);
Color.create(r, g, b, a);Color.convert(color);Color.from(r, g, b);
Color.from(r, g, b, a);Warning
RGBA colors cannot be mixed.
Color.mix(color1, color2);
Color.mix(color1, color2, 0.2); // 20% of color1, 80% of color2
Color.mix(color1, color2, 0.8); // 80% of color1, 20% of color2Color.alpha(color, a);Important
This wiki page has been updated for Jurtan Engine 1.4-beta