How to make a Java "3D" game? Part 1 of 5! "Getting Things Going With Rendering And Screen"

Here I will show you how to make a 3D game.
Website & Donations –
Playlist –
https://galaxypub.vn/
Chuyên trang tin tức tổng hợp số #1 VN
Here I will show you how to make a 3D game.
Website & Donations –
Playlist –
https://galaxypub.vn/
CONTINUE
I NEEED IT
17:31 it seems that Devil himself came to life to make this tutorial, lol.
thank you for the tutorial. it helped me a lot)
imagine if notch used this to make minecraft
corona virus
milk
Wow, C# and Java are really similar! if, IF you are still on youtube maybe make a bigger series in Java 8 on environment, items, health system and all that good stuff? It might rack you alot more views, subs and comments, eh?
Hey good job man! This video really helped with me learning 3D Java graphics
Is anyone here from 2020?
dude thanks for recording this…
It's been 7 years. I'm still waiting.
Quick tip guys. There is no need to create a new Random() object each time you need a random number. Just declare one outside your for-loop and call nextInt() on that. Be more efficient.
Pls update
USING JRE 1.8.0 (full thing in https://stackoverflow.com/questions/54171913/unresolved-compilation-problems-in-tutorial-and-code-the-method-getgraphics )
Exception in thread "Thread-2" java.lang.Error: Unresolved compilation problems:
screen cannot be resolved to a type
The method getGraphics() is undefined for the type Graphics
at Component.render(Component.java:32)
at Component.run(Component.java:46)
at java.lang.Thread.run(Unknown Source)
Thank you for your work! Do you have some advice in making an object with a hollow, e.g hollow cylinder!?
This is the best thing I've seen in a huge lot of time. Seriously. Do more stuff like this :D!!!!!!!!
Continue man :)) you are so great!
If you guys learn the language properly, then you'll be able to play with this code and make whatever you want easily. I suggest watching TheNewBoston's tutorial series on Java, it's very helpful!
Dude there are many people requesting for another video. Why can't you already do one
i did all the same he did but when i run it it doesnt have scattered pixels
When His mic messes up!
When His mic messes up!
+Ulixava do you plan on continuing this series? I would enjoy it if you would so.
as of right now it has 69,000 views ( ͡° ͜ʖ ͡°)
Great video! Very helpful but like everyone has said need better microphone and finish series, this is very helpful video in learning java… I know every other code language yet I never bothered to learn java! lol! Great video thoih very helpful highly recommend
whos watching in 2017? like if you are
Where's part 2???
on component.start(); it says its wrong for some reason
I made a better running method:@Override
public void run() {
long lastTime = System.nanoTime();
double nsPerTick=1000000000D/60D; int ticks = 0;
int frames = 0;
long lasTimer = System.currentTimeMillis();
double delta = 0;
while(isRunning)
{
long now = System.nanoTime();
delta +=(now-lastTime)/nsPerTick;
lastTime = now;
while(delta >=1)
{
ticks++;
tick();
delta-=1;
}
try {
Thread.sleep(2);
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
frames++;
render();
if(System.currentTimeMillis() – lasTimer >=1000)
{
lasTimer +=1000;
System.out.println("Frames: " + frames + " | Ticks: " + ticks + " " );
frames = 0;
ticks = 0;
}
}
}
public void render(){
}
public void tick(){
}
}
where can i download the java engine?
this is old! make another part!