Buffman 10 Share Posted May 9, 2020 This is my first time messing with onpaint, everything seems to be in working order but it says that the onpaint method has been deprecated so idk what i must do, thanks in advance Link to comment Share on other sites More sharing options...
Soldtodie 76 Share Posted May 9, 2020 @Override public void onPaint(Graphics graphics) { Graphics2D g = (Graphics2D)graphics; //Cast Graphics to Graphics2D g.drawImage(mainPaint, 0, 340, null); } Just use onPaint(Graphics graphics) and cast the graphics object to a Graphics2D object or use the Graphics object if you don't need Graphics2D. Link to comment Share on other sites More sharing options...
Buffman 10 Author Share Posted May 10, 2020 ah i see , thank you !!! 9 hours ago, Soldtodie said: @Override public void onPaint(Graphics graphics) { Graphics2D g = (Graphics2D)graphics; //Cast Graphics to Graphics2D g.drawImage(mainPaint, 0, 340, null); } Just use onPaint(Graphics graphics) and cast the graphics object to a Graphics2D object or use the Graphics object if you don't need Graphics2D. Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.