Draw - Redraw Question
in
Programming Questions
•
3 years ago
Hey all,
Just a quick question.
Have some some text placed with:
void drawTitle(){
fill(0);
textSize(20);
textAlign(LEFT);
text(title, 30, 30);
}
drawTitle() is called in draw however I want to update the text on a mouse event. When I do this currently the text does not update but writes on top of the previous text. Could you tell me please how to do this?
Thanks all,
j
1