textStyle

概要

p5.jsリファレンス(参考情報)

[p5.js] textStyle

サンプル

def setup
  background(220)
  strokeWeight(0)
  textSize(12)
  textStyle(NORMAL)
  text('Style Normal', 10, 15)
  textStyle(ITALIC)
  text('Style Italic', 10, 40)
  textStyle(BOLD)
  text('Style Bold', 10, 65)
  textStyle(BOLDITALIC)
  text('Style Bold Italic', 10, 90)
end

構文

戻値