[][src]Static p5_sys::global::noCursor

pub static noCursor: NoCursorInternalType

Hides the cursor from view.

Examples

function setup() {
  noCursor();
}

function draw() {
  background(200);
  ellipse(mouseX, mouseY, 10, 10);
}