Bobrocket Posted July 22, 2015 Posted July 22, 2015 It's 3:36am, I'm listening to Filthy Frank's weeaboo song. Forgive me for any mistakes. https://github.com/Bobrocket/PaintLib Code and usage there. There may be some references that I haven't cleaned up (eg to my own project), just try and fix them yourself lmao. Enjoy, and sorry for the shit code.
Bobrocket Posted July 22, 2015 Author Posted July 22, 2015 (edited) Screenshots plox! I'll get some in the morning, you can make your own shit you don't need screenshots EDIT: here's something basic I made for a test Code: p = new Paint(this); DynamicLabel dl = new DynamicLabel(568, 353, "", new Font("Open Sans", Font.PLAIN, 14)) { @Override public void onUpdate(Paint parent) { setText("" + currentTime); } }; try { BufferedImage bimage = ImageIO.read(new URL("http://i.imgur.com/2Q1c8gr.png")); p.add(new Picture(0, 338, bimage)); bimage = ImageIO.read(new URL("http://i.imgur.com/mUn12cu.png")); p.add(new DynamicOrb(27, 365, dl, bimage, 25, 25)); } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } getBot().getCanvas().addMouseListener(p); getBot().getCanvas().addMouseMotionListener(p); Edited July 22, 2015 by Bobrocket 1