Complete Java Game Development Course now available on my website http://www.codingmadesimple.com/java-game-design-course/
Support my Patreon – https://www.patreon.com/realtutsgml
Part 1 of a series on the very basic fundamentals of Java game design. If you have any questions then be sure to leave a comment or contact me on twitter; realtutsgml. If you learned something then be sure to leave a like, comment, and favorite.
Have you ever wanted to create games? Have you ever gotten fed up with it being to difficult? Well now is the time to thank me and possibly subscribe because you have just found the channel for you! Game Maker Tutorials, Java Game Programming, Unity3D Tutorials, Batch, C++ and much much more! This is the channel for you, the one stop shop for an exploration of your hidden talent as a game developer. Unleash your potential and go wild with imagination when you finally figure out how to make any game you want!
Wave Playlist- https://www.youtube.com/playlist?list=PLWms45O3n–7TtyMACZqmEgT0nfkOrfLd
Visit CodingMadeSimple for more exclusive tutorials and get the help you need to succeed as your very own indie game developer!
http://www.codingmadesimple.com
Follow me on twitter for exclusive content and interaction with me!
http://www.twitter.com/realtutsgml
Follow me on Google+ to keep updated with all of my tutorials
http://www.google.com/+RealTutsGML
Game Maker Studio: Programming
Game Maker Studio: Tutorial
Java Programming
Game Programming
Game Tutorial
Programming Tutorial
Amazon Auto Links: No products found.
my fps after all the code is 12,000
which programming language did you use?
which app do we use to create this game?
Holy crap that loop. In javascript its just
setInterval( Loop, 30 );
Never in my life would I have thought a loop could have been so long and complicated.
where does he call the function “run()” ?
If you replace 640 with 1920, it doesn’t equal 1920×1080, it equals 1920×1440. Replace the 12 with a 16 to get the right resolution or else u will be a pleb.
1:19 “this is wave 2”
*Wave 7*
liar
1:52,RealTutsGML charged for flashing strobe lights, giving 179 people epileptic seizures.
public void run()
{
long lastTime = System.nanoTime();
double amountOfTicks = 60.0;
53 million frames. game of the year (‘-‘ )/
double thumbs up
public void run()
{
System.out.println(“Delta, something, something, this code works, I swear, really”);
}
Where does the FPS Show? I may be being stupid but i dont see it anywhere
Plss Can You Make 1 Video How to Download This Program!
It’s really important to watch the back end first few vids twice or more to really grasp what’s happening. Especially if you’re new to Java.
I was completely lost the first time I watched these first few videos but as you replay them it gets clearer. Nothing mystical about it 🙂
What software are you using
Using netbeans and the color is not changing and the FPS is not excedding 900
My FPS was 12 million
This loop is not working.!
Didn’t get black screen.
plzs help..!
public void run()
{
long lastTime = System.nanoTime();
double amountOfTicks = 60.0;
double ns = 1000000000 / amountOfTicks;
double delta = 0;
long timer = System.currentTimeMillis();
int frames = 0;
while(running)
{
long now = System.nanoTime();
delta += (now – lastTime)/ns;
lastTime = now;
while(delta >= 1)
{
tick();
delta–;
}
if(running)
render();
frames++;
if(System.currentTimeMillis()-timer > 1000)
{
timer += 1000;
System.out.println(“FPS: ” + frames);
frames = 0;
}
}
stop();
}
its not making a window for me
my pc runs at 60 000 000fps
TFW when you have the speed just a little bit higher on 1.25 and you’re amazed how fast he is typing stuff, bc you forgot it’s sped up.
how much wpm 100 or 120? i got 80 fam lit
Wait what. I have exact code and I get an error when I try to do frame.add(game);
Erm I know if this may be a stupid question but where do I find and open that window for editing java..
Not pro tip change speed to 2 XD
has anybody tried to learn a coding lauage and learned a diff one?
the buffer thing doesn’t work… do u know why?
My eclipse is way different its white not black. I have the JavaEE version
hey how about using netbeans 8.2 for this?
i’m using it to literally ctlr c and ctlr v ;P
it’s working but the basic fundamental diffrences between eclipse and netbeans is really causing stress and frustration as im a newbie in using netbeans too!
what program?
i need bro a book about game
ppl getting millions of fps meanwhile I’m getting roughly 100 LOL
I am quite new to Java, i want to proggram games but where should i start? I know very basic things about Java.
Frames Per Second: 45882599
lol
give me software name
It runs perfect but It dont display the black fill rect command…. it just stays white. No flicker just white window. Any Ideas? no green no just white… 🙁
What software is that?
Sorry, but this video annoyed me so much. you didn’t explain shit all of what you were doing you just said ‘do it’.
Too fastttt
it doesnt fcking work it keeps giving me errors everywhere
hai everyone…
I liked this video..
But in my view it would be better if method was clearly explained..
regards
which IDE are you using?
SOMEONE HELP MY WINDOW IS NOT LONG JUST TALL I RESTARTED THE TUTORIAL10 TIMES I DID EVERYTHING RIGHT BUT IT WONT WORK
When I set up the project what should the JKE settings be?