Java Project - RPG Early Build
Loading...
7,262
Loading...
Uploader Comments (evilfrenchguy)
see all
All Comments (22)
-
@evilfrenchguy Awesome dude! The games looks great!
-
is this open source so i can see what you did? im new. and also how do you make a map-editor for tiles?
-
Bull Shit!!
-
@latvianMCG About 4 months. It was a semester project.
-
how long did it take you to make that ? im thinking to make something nice with java
Loading...
Did you make the graphics yourself with pixel art? And also did you use something like LWJGL?
MrPitbull917 1 month ago
@MrPitbull917 Yeah, I did all the art myself. I used AWT & Swing, but I'd like to learn LWJGL or JOGL at some point.
evilfrenchguy 1 month ago
really sweet man, ii have a question though. what resources did you use to learn java game programming?
36redsoxfan 7 months ago
@36redsoxfan I was taught in college. Books are good though. Try Head First Java to master the basics.
evilfrenchguy 7 months ago
im pretty new to java, how to you program AI movement and such?
and gotten down user controlled movement but not sure how to get it to move on its own
this is really good, btw
fatretard11 1 year ago
@fatretard11 Well, in game programming there is something called a Game loop. In the game loop is two things; updating and drawing, looping many, many times a second. So, everytime update() is called, you update positions, A.I. algorithms and check user input etc.. In draw(), you simply paint the pictures on the screen using the values you just updated.
evilfrenchguy 7 months ago