- Joined
- Dec 10, 2014
- Messages
- 3,255
- Thread Author
- #1
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);
}