textSize

v0.1.7
textSize(size);

Set a font size.

Arguments

sizeThe size of the font in pixels

If this is called using fonts, make sure to call textSize after calling textFont

function setup()
  createWindow(200, 200);
end

function draw()
  background('purple');

  textSize(48); -- Larger text
  text('Hello lu5!', 0, 120);
end

Output

See textSize in typography.h