[][src]Static p5_sys::global::noTint

pub static noTint: NoTintInternalType

Removes the current fill value for displaying images and reverts to displaying images with their original hues.

Examples

let img;
function preload() {
  img = loadImage('assets/bricks.jpg');
}
function setup() {
  tint(0, 153, 204); // Tint blue
  image(img, 0, 0);
  noTint(); // Disable tint
  image(img, 50, 0);
}