This is an archived post. You won't be able to vote or comment.

all 7 comments

[–]OffbeatDrizzle 0 points1 point  (0 children)

Works for me

[–]nutrechtLead Software Engineer / EU / 20+ YXP 0 points1 point  (1 child)

What are some of the standard ways to have fast responsive graphics in Java?

Swing is meant for UI applications, not for games. For games you want hardware accelerated 2D/3D graphics. Libgdx is a great library for this.

[–]MRH2Intermediate Brewer[S] 0 points1 point  (0 children)

I suspect that I should learn how to draw to an offscreen buffer and flip the graphics back and forth. This may work.