$.text

controls for formatting and outputting text
Properties
Methods
function update() {
    $.text.print($.w/2, $.h/2-50, "Before Text Settings");
    $.text.size = 16;
    $.text.maxWidth = 50;
    $.text.alignment.x = "left"
    $.text.bold = true; 
    $.text.italic = true;
    $.text.hyphenation = false;
    $.text.rotation = 30;
    $.text.print($.w/2, $.h/2, "Hello World!");
}