Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

Sign up now!

[SOLVED] PaintListener not painting?

Joined
Dec 10, 2014
Messages
3,255
For some reason nothing is being painted to the canvas. My script extends LoopingScript and implements PaintListener, but onRepaint doesn't seem to be drawing anything to the client screen :(

Code:
@Override
public void onPaint(Graphics2D g){
    g.drawString("TEST", 300, 300);
}
 
Top