Thanks for watching everyone! I want to share my new favorite place on TH-cam: the Vox Video Lab, our new home for exclusive creator commentary, bonus clips, and more. If you become a member, you'll be helping us make more of the videos you love. And I'll be doing something for the Video Lab soon too! I hope you check it out: www.vox.com/join
But this is only half the story. During the development process, everything in the video game is usually made of rectangles. However, at the end of the development, all the rectangles are converted to triangles. This is because it's much easier for game developers to work with rectangles, but it's easier for GPUs to work with triangles.
I am a pro 3d Artist for video games, this is half true, we basically do what ever is easier. Bothe Triangles and quads are used in development. It's usually about half and half.
Should also be mentioned that they make the models using squares then subdivide it into triangles. It's just way easier to thing spatially when dealing with squares and when you're all set you can just press a button to turn it into triangles.
@Luc Bloom Minecraft uses polygons and not voxels for it's graphics, but it does remember terrain data in voxel form. It still gets rendered as polygons tho.
i used to study games design but switched over to animation with a focus on 3d, the hardest part was switching over from triangles to my teachers telling me everything's gotta be quads. love that you guys cover these kinda topics!
usually it doesnt matter if you modelling something for gaming or photorealistic 3d. you have to model with quads all the time except you are talking about calculating those things in a program
@@overdev1993 sorry, mind explaining more? i remember in my games studios we'd use tris in a lot of our assets and environments, but my 3d teacher now is quite strict about no tris or n-gons. i don't know if these are just the preferences of my teachers though, I'm still just a beginner!
@@888pil game engine only can deal with tris. so you have to convert all the quad meshes to tris oder the engines does that automatically. tris and ngons are just hard to model with atleast most of the time thats the only reason I think.
When Vox had a survey and asked what your audience wanted I said more games coverage as it's the biggest form of media now. To ignore games is to ignore modern culture. I didn't want plays or things like that but intelligent discussions about games. Vox you delivered! I'm sure it wasn't because of my request but it feels like I had a small hand in it! So happy. Great video!
I'm very pleased to see behind the scenes of video games being shown in mainstream media such as Vox, but I'm a little disappointed in the execution. I would have loved to see you dig a little deeper than the video title, because that's pretty much all you said "video games are made of triangles", except with fancy Vox graphics. Don't really need to watch the rest of the video for that. Nevertheless I'm very happy to see that there is mainstream interest in the making of process of video games nowadays.
Curiously enough the Sega Saturn rendered everything in rectangles instead of triangles. This proved to be an issue(among many others) when porting games to the console because every other game was rendered using triangles. Most devs would just set the side of a rectangle to 0, effectively making it a triangle, however this was less than ideal.
Wow, really cool that you got someone as informed and knowledgeable as the head of engineering of unity! As always, really high quality and concise video! Sometimes wish these were longer.
An equivalent concept is used elsewhere too. In 3D printing, CAD, 3D modelling etc, objects are treated in a similar manner. For example, during simulation of 3D models, we use FEA (Finite Element Analysis) to study them with respect to physics, engineering (and even economics)... That is because a triangle is the SIMPLEST geometric shape that gives a completely closed contour/loop and or surface area. By simplest, I mean its the least number of points you can join to form a closed area. Therefore, when you divide (or construct, in this case) an object with an extremely large (but still finite) number of triangular area elements, it becomes easier for a computer to understand it...
That’s what I was thinking. We had to do stuff with “meshes” in my heat transfer class using some fancy engineering software whose name I forget. Basically the meshes were just triangular nets that surrounded our objects we were studying.
3:34 is where the answer is. They don't explain it technically, but most videos don't explain it at all. So, thank you to Vox for a great video. The issue is that a noncoplanar polygon is mathematically undefined (so a computer can't calculate them, and thus can't draw them). Yet all but the simplest models will have noncoplanar quads or ngons. If you take a bent quad, and create a new line between the 2 vertices where the bend happens, then you have 2 triangles. It is impossible to have a noncoplanar triangle, thus triangles guarantee your polys will render.
Its the same with 3D printing. When I make a model on CAD software its extremely detailed even if its just a simple shape. I run it though a program that turns it into an .stl file which is basically a bunch of triangles forming the shape of the object. You can control the number of triangles to change the "resolution of the model". Then when its almost ready to print the triangle stl model gets sliced through in special software and turned into g code - a series of tool paths based of of the straight lines of the triangles for each printed layer of the model. Its just amazing how stuff works when you go into the tiny details of it.
Lol, I'm so late but when I first got my 3D printer I didn't understand that a Gcode was specific to an individual printer, and spent so long searching online for a "Gcode file converter" to no avail.
@@elliotfinn Yeah totally personalized to your own machine, I wonder in the future the sensors and machine learning will be so good that we will just be able to download a file and print it with little to no prep. Like in Star Trek.
correction 3:25 : "So the game engine needs to convert curved surfaces into flat ones for the player's computer to process." The game engine doesn't convert curved surfaces. The objects are already polygonal meshes made of triangles described by vertices, usually imported from a 3D editing software, like Maya or 3ds Max. Therefore no need for any conversion. In addition, it is possible for a computer to process curved surfaces. This is the case for vector graphics and NURBS.
Just adding here that triangles are not only shapes that can be used for games. Many people have experimented with trapeziums also, especially in 2d games. Trapeziums are sometimes better than triangles as you can save a trapezium with 4 points where you will need 6 points for 2 triangles, leading to less memory consumption. Moreover parallel lines in a trapezium, mimic the scanlines on the screen leading to better sharpness. But after 3d games, all game engines use triangles, and thus now for 2d games as well triangles are used.
@@renaigh Minecraft is actually made up of voxels although converted and rasterized to triangles in the end (although I think there's a good chance the RTX version just directly raytraces voxels, since voxels are faster to raytrace than triangles).
Just to add to the video, in the 3D modeling pipeline for animations and games, 3D models aren't made out of triangles, but quads (4-sided polygons). You can see that at 0:28 - 0:36, where you can find that the triangles fit together to form very even quads along the entire model. They are automatically converted into triangles upon being exported out to be used for games. The reason for modeling in quads versus modeling in triangles is that, while using triangles directly would result in more details with fewer polygons, creating, editing, and assigning UV maps ("unfolding" and flattening the model's surface so you can apply a 2D texture map) to models using quads is much easier and much more efficient.
Minecraft actually uses voxels for its scene data although it rasterizes the voxel faces as texture-mapped triangles on the GPU. Minecraft RTX might actually avoid having to convert the voxels into triangles though. Voxels are actually faster to directly raytrace than triangles since the ray/triangle intersection test tends to be the most expensive part of raytracing.
Check the skin of your hand, it's made of small triangles as well. That's how it works, in order to make detailed 3D objects you need to use simple 2D objects.
Digital audio uses the Fourier series to create virtually any sound out of a complex combination of sine waves. Since sine waves are triangle functions, digital audio can be thought of as a long series of tiny triangles too.
Triangle is not a mere "tricks" to get graphics working in computer, but triangles is actually something fundamentals to vision. In 1980s there's paper called "Interpreting Line Drawings", it explain how a 3 lines of a corner of a pyramid (basically an edge of 3 triangles) can interpret the surface of every visible objects. This mathematics/thoughts-process is still taught to this day, you can find them under same title in MIT Courseware on Artificial Intelligence.
I always love your videos but being a game enthusiast, I was like OMG, they finally did a video on gaming. I hope you do another one soon... PS I love you, Vox ❤❤❤
I appreciate the use of a teapot in the example. (A teapot was one of the first rendered 3D objetcs, based off a real teapot. It's called the Utah Teapot)
@@hikari_no_yume I am not sure. When you export a Minecraft world into .obj file and import it into blender you get get quadratic planes and not triangles. I think triangles are only used in komplex geometry, but I am not sure.
Well render distance just tells your computer how far out it can render. If you have a low render distance, you can't see objects far away, if you have a high render distance, you can see objects that are really far away.
Pixels have nothing to do with triangles. You may have a whole character in the distance fit into a whole pixel. Pixels are exclusively what the graphic card ships to the screen. They are unconcrete. Triangles are surfaces of the WORKING game world, with collisions and everything.
the reason is very simple: if you move any point of a triangle in any xyz direction the triangle keeps flat, if you do this with square or other, the polygon is deformed causing errors that will be displayed on the screen... just that
There are a couple reasons why you would want to split a game into triangles: 1. Any model can be split into triangles. 2. Triangles are convex. 3. Games are built on game engines which are built on graphics APIs like OpenGL, Directx, Vulkan, or metal, all of these graphics APIs just send drawing data to the GPU and when learning a new graphics API the first exercise is often drawing a triangle. Mostly because the graphics APIs allow you to draw triangle just with Vertex buffer and a Vertex array and sometimes a shader. But, you don't need indexed drawing to draw a triangle. Therefore, drawing a triangle is easier. So when you draw a square in these graphics APIs, instead of using the graphics APIs built-in functionality to draw quads, they use a index buffer of indices to do indexed drawing. Also in .obj files where models are stored (though most game engines use .fbx) the .obj file stores indices, vertices, and normals, therefore when loading a model from an .obj file you need to use indexed drawing. Therefore, you need to use triangles.
This video could have been so interesting and have so much cool info. But instead it just showed some gameplay and explained very basic geometry. Vox usually does so good videos but this was just short and dumb. I know you can do better, just try to go deaper next time.
Thanks for watching everyone! I want to share my new favorite place on TH-cam: the Vox Video Lab, our new home for exclusive creator commentary, bonus clips, and more. If you become a member, you'll be helping us make more of the videos you love. And I'll be doing something for the Video Lab soon too! I hope you check it out: www.vox.com/join
Cleo Abram hey you look like Keira Knightly !
you're really beautiful 😃❤
Hey... Your waist compared to your shoulder looks really slim. Just something i observed. Doesn't mean i wasn't focusing on video 😂
You guys all creepy... anyway great explanation in the video!
so is the earth made up of triangles
*CPU'S ARE JUST ROCKS WE TRICKED INTO THINKING*
This dude is on another level of being that we will never understand.
Implying the rocks are thinking
This comment is too good for a venue like TH-cam
That's deep. We're just tissue tricked into thinking
Dont credit this guy for being original, because he isnt. Someone else made this quote up. I believe it was Terry Pratchett.
vox: answering questions you never knew you had
Wis it a little shorter.
Well i have knew about this when im 12 m8
Lol
@@azzurirodrinata7646 you're such a badass
Azzuri Rodrinata Einstein over here
@@sweatysweak roblox
Who knew Keira Knightley knows a lot about games?
@@kahoot9659
Hear hear
Natalie Portman
"Not even their parents could tell them apart"
@@kahoot9659 You're right, it's Giada De Laurentiis.
@@kahoot9659 tomato tomato
PS5: someone said... triangles?
i know dude 😂
∆
what???
@Crimson Epitaph what does the comment mean?
It's a tall fan
0:38 "But you never see them."
Well someone hasn't played Fallout 76...
Oof
Oof
Oof
Oof
Oof
Thank you tiny triangles, very cool.
Very cool and very legal
It not just triangle. Material. Rig. Etc
"You're gonna see the dust fly off" - all thanks to raymarching ..."Everything is made of triangles." 😒
lets all love lain
dani
How do you do, fellow gamers?
Justin Y.+ I’m in school gamer
KSP
gamers rise up
Nothing much, Just casually harassing minorities
Why do I see you everywhere?
This should be popular now after the UE5 reveal.
I came straight from the cherno
Recommended by the algorithm
Millions and millions of triangles
@@sunilgowda2056 Billions*
People should go watch the computerphile series
Here’s why video games are made from tiny triangles:
Lvl 1 : Squares
Lvl 100 : Triangles
*_That’s how shapes work_*
I literally see you everywhere, are you trying to be Justin Y?
thats how the mafia works
Gonna make you shape like that
Voxels ar level 300
Haha
But this is only half the story. During the development process, everything in the video game is usually made of rectangles. However, at the end of the development, all the rectangles are converted to triangles. This is because it's much easier for game developers to work with rectangles, but it's easier for GPUs to work with triangles.
KunWoo Dodd In general this is true, but the word you’re looking for is ‘quad’, not ‘rectangle’
I am a pro 3d Artist for video games, this is half true, we basically do what ever is easier. Bothe Triangles and quads are used in development. It's usually about half and half.
naaaam n-gon ftw
@@donloder1 heresy
@@TheDanielLivingston Oh of course "quad" is the most correct term, but "rectangle" is more accessible to the average TH-cam comment reader.
And that's why NVIDIAs HQ is shaped like a triangle.
*NoVideo
r/AyyMD xd
Should also be mentioned that they make the models using squares then subdivide it into triangles. It's just way easier to thing spatially when dealing with squares and when you're all set you can just press a button to turn it into triangles.
3:01 the singular of "vertices" is "vertex"
**slaps ps5** This boy can fit in so many triangles!
Minecraft: No, I don't think I will
@Luc Bloom Minecraft uses polygons and not voxels for it's graphics, but it does remember terrain data in voxel form. It still gets rendered as polygons tho.
the minecraft are made by triangles to, i k it because im doing a 3d game on java, like minecraft
Minecraft uses triangles...
It's just a joke.
a triangle is half a square, so Minecraft is still just a bunch of triangles
i used to study games design but switched over to animation with a focus on 3d, the hardest part was switching over from triangles to my teachers telling me everything's gotta be quads.
love that you guys cover these kinda topics!
usually it doesnt matter if you modelling something for gaming or photorealistic 3d. you have to model with quads all the time
except you are talking about calculating those things in a program
@@overdev1993 sorry, mind explaining more? i remember in my games studios we'd use tris in a lot of our assets and environments, but my 3d teacher now is quite strict about no tris or n-gons. i don't know if these are just the preferences of my teachers though, I'm still just a beginner!
@@888pil game engine only can deal with tris. so you have to convert all the quad meshes to tris oder the engines does that automatically.
tris and ngons are just hard to model with atleast most of the time thats the only reason I think.
I just watched a video of the Unreal Engine 5 for PS5 and came here to see why video games are made of tiny triangles.
It’s literally like in real life too 😂 the shape triangle is the strongest shape
@@andycornejo2361 It's also the most basic of the shapes. 3 sides is minimum that you need to enclose an area.
How far into a new year is it acceptable to greet "Happy New Year!"?
Uptil 12am of the last day of the year !!!!
This far, plus 10 minutes
I think in France it's around the 7th of february xD
within 74 seconds after midnight
I say the 10th
vox: put thousands of these or maybe even millions
me: oh shoot then the ps5 tech demo is more impressive
Mike Wazzup didn’t they mention in the tech demo that the 500 statues alone had several billions of triangles?
@@nimnadarajah6581 millions
@@RisenSlash trillions
Games are made of gamers
Hey ily
I thought u would have more replies than this, since ur channel is pretty big
Memtub same
BUT THINK ABOUT IT: *A BALL IN A VIDEO GAME IS ACTUALLY MADE OF TRIANGLE S*
And Music is made for magicans.
When Vox had a survey and asked what your audience wanted I said more games coverage as it's the biggest form of media now. To ignore games is to ignore modern culture. I didn't want plays or things like that but intelligent discussions about games.
Vox you delivered! I'm sure it wasn't because of my request but it feels like I had a small hand in it! So happy. Great video!
Is this Natalie Portman‘s sister?!
Yes, Keira Knightley.
no I'm Natalie Portman's sister. AMA
@@BladeTheGabite joe mama
0:01 No, that is Arthur Morgan. He died at sunrise, that's why we have AM for morning hours.
Oh wow I never made that connection. Truly beautiful.
0:51 *_t h a t ‘ s h o t_*
Gading Surdawi *yes*
the 3 vs 4 dots thing just blew my mind
I'm very pleased to see behind the scenes of video games being shown in mainstream media such as Vox, but I'm a little disappointed in the execution. I would have loved to see you dig a little deeper than the video title, because that's pretty much all you said "video games are made of triangles", except with fancy Vox graphics. Don't really need to watch the rest of the video for that.
Nevertheless I'm very happy to see that there is mainstream interest in the making of process of video games nowadays.
Curiously enough the Sega Saturn rendered everything in rectangles instead of triangles. This proved to be an issue(among many others) when porting games to the console because every other game was rendered using triangles. Most devs would just set the side of a rectangle to 0, effectively making it a triangle, however this was less than ideal.
That's cool to know!
who is seeing this after that traingle video of unreal engine 5 demo😂
Wow, really cool that you got someone as informed and knowledgeable as the head of engineering of unity! As always, really high quality and concise video! Sometimes wish these were longer.
An equivalent concept is used elsewhere too. In 3D printing, CAD, 3D modelling etc, objects are treated in a similar manner. For example, during simulation of 3D models, we use FEA (Finite Element Analysis) to study them with respect to physics, engineering (and even economics)...
That is because a triangle is the SIMPLEST geometric shape that gives a completely closed contour/loop and or surface area. By simplest, I mean its the least number of points you can join to form a closed area.
Therefore, when you divide (or construct, in this case) an object with an extremely large (but still finite) number of triangular area elements, it becomes easier for a computer to understand it...
That’s what I was thinking. We had to do stuff with “meshes” in my heat transfer class using some fancy engineering software whose name I forget. Basically the meshes were just triangular nets that surrounded our objects we were studying.
@@ShadyForest ANSYS Fluent, COMSOL Multiphysics, ABAQUS, SolidWorks etc.
Must have been one of those...
I mean if you play early tomb raiders you would know really well about triangles.
"But you never see them"
This girl is young.
Ha, fair.
What? How have you got it to say “read more”
@@MiloMcCarthyMusic TH-cam is not perfect, nothing is, there are bound to be mistakes
3:01 the singular term for "vertices" is "vertex", not "vertice".
Why did the console gamer crossed the road ?
To render the other end of the street
Lol
Hilarious and original
1997 called. He wants his joke back.
And They they render it tho
@@Blackpowderdofus
No, it's not original. This joke is as old as it gets.
3:34 is where the answer is. They don't explain it technically, but most videos don't explain it at all. So, thank you to Vox for a great video. The issue is that a noncoplanar polygon is mathematically undefined (so a computer can't calculate them, and thus can't draw them). Yet all but the simplest models will have noncoplanar quads or ngons. If you take a bent quad, and create a new line between the 2 vertices where the bend happens, then you have 2 triangles. It is impossible to have a noncoplanar triangle, thus triangles guarantee your polys will render.
Illuminati confirmed.
Jackass
Pythagoras confirmed
(Plays the X-Files Theme.)
@@pequod4557 r/woooosh
The process of translating geometry into pixels on your screen is called Rasterisation
But don't we loose the points data after raster?
Stellar quality once again 👌
i love that u opened the video with rdr2
When making the Saturn, Sega didnt get the memo.
Triangles are now my most favorite shape
Yeah unreal engine 5 for PS 5 told me hundreds of billions triangle
I'm gonna make a game for the ps5 with only 3 triangles
Ser3rm 3 triangles is prob like a rock in a game😂
@@andycornejo2361 not even it would probably be smaller than a pixel
All these graphics are amazing, but the graphics of Monarchist's heads rolling is better
Agreed
Oh boy I’m scared of all the ps5 comments that are gonna come in
Beto
Have you heard that ps5 draws in 50 megafarts per terashit
Ireikes oh that’s nothing, I heard the Xbox one has 1gigashart per 10 terashit
Yay, saw they mentioned Monument Valley. That game (and its sequel) is so beautiful!
Its the same with 3D printing. When I make a model on CAD software its extremely detailed even if its just a simple shape. I run it though a program that turns it into an .stl file which is basically a bunch of triangles forming the shape of the object. You can control the number of triangles to change the "resolution of the model". Then when its almost ready to print the triangle stl model gets sliced through in special software and turned into g code - a series of tool paths based of of the straight lines of the triangles for each printed layer of the model. Its just amazing how stuff works when you go into the tiny details of it.
Lol, I'm so late but when I first got my 3D printer I didn't understand that a Gcode was specific to an individual printer, and spent so long searching online for a "Gcode file converter" to no avail.
@@elliotfinn Yeah totally personalized to your own machine, I wonder in the future the sensors and machine learning will be so good that we will just be able to download a file and print it with little to no prep. Like in Star Trek.
correction 3:25 :
"So the game engine needs to convert curved surfaces into flat ones for the player's computer to process."
The game engine doesn't convert curved surfaces. The objects are already polygonal meshes made of triangles described by vertices, usually imported from a 3D editing software, like Maya or 3ds Max. Therefore no need for any conversion.
In addition, it is possible for a computer to process curved surfaces. This is the case for vector graphics and NURBS.
Darn. I thought they used triangles because of influence from the Illuminati.
My dreams are crushed.
In any video game related game I see you in them comments
Just adding here that triangles are not only shapes that can be used for games. Many people have experimented with trapeziums also, especially in 2d games. Trapeziums are sometimes better than triangles as you can save a trapezium with 4 points where you will need 6 points for 2 triangles, leading to less memory consumption. Moreover parallel lines in a trapezium, mimic the scanlines on the screen leading to better sharpness. But after 3d games, all game engines use triangles, and thus now for 2d games as well triangles are used.
Well, that could've been done in 30 seconds.
*hears voice of narrator* "wow, what a soothing, beautiful voice.
*sees the woman on screen*"wow. Oh my."
*heart skips a beat.*
Vox: Everygame is madeup of small triangles.
Minecraft: Am I a joke to you?
yes, even Minecraft.
@@renaigh Minecraft is actually made up of voxels although converted and rasterized to triangles in the end (although I think there's a good chance the RTX version just directly raytraces voxels, since voxels are faster to raytrace than triangles).
Just to add to the video, in the 3D modeling pipeline for animations and games, 3D models aren't made out of triangles, but quads (4-sided polygons). You can see that at 0:28 - 0:36, where you can find that the triangles fit together to form very even quads along the entire model. They are automatically converted into triangles upon being exported out to be used for games.
The reason for modeling in quads versus modeling in triangles is that, while using triangles directly would result in more details with fewer polygons, creating, editing, and assigning UV maps ("unfolding" and flattening the model's surface so you can apply a 2D texture map) to models using quads is much easier and much more efficient.
Shoutout to any 3d modelers watching this vid
Great video!
Small note: The singular of Vertices isn't Vertice, it's Vertex
“Meticulously detailed games”
>proceeds to state fortnite and pubg as examples
Finally we found someone smart!
@Kay
'Modern Disasters'? Aren't they some of the popular game's played by millions, I don't know much about gaming & it's history, can u eloborate?
Artstyle =/= Graphics
Pubg used to rule the world... good days
@Nefomemes too bad m8
So Minecraft is technically made of triangles, not squares? My childhood was a lie!
Minecraft actually uses voxels for its scene data although it rasterizes the voxel faces as texture-mapped triangles on the GPU. Minecraft RTX might actually avoid having to convert the voxels into triangles though. Voxels are actually faster to directly raytrace than triangles since the ray/triangle intersection test tends to be the most expensive part of raytracing.
*That’s how triangles work*
Check the skin of your hand, it's made of small triangles as well. That's how it works, in order to make detailed 3D objects you need to use simple 2D objects.
anyone else get this recommended after seeing the unreal engine 5 demo?
Her: Its an action-adventure game with over 60 hours of stunning gameplat 0:07
Speed-runners: Its 3, actually
made with mematic
0:50 is RDR2 in Japan
Digital audio uses the Fourier series to create virtually any sound out of a complex combination of sine waves.
Since sine waves are triangle functions, digital audio can be thought of as a long series of tiny triangles too.
You look like the actress Keira Knightley.. 😂😂
Damn it Jeff, did you let another clone escape the lab?!?
Triangle is not a mere "tricks" to get graphics working in computer, but triangles is actually something fundamentals to vision. In 1980s there's paper called "Interpreting Line Drawings", it explain how a 3 lines of a corner of a pyramid (basically an edge of 3 triangles) can interpret the surface of every visible objects. This mathematics/thoughts-process is still taught to this day, you can find them under same title in MIT Courseware on Artificial Intelligence.
Vox: Everything is made of triangles.
Minecraft: wut?
Happy to know rdr2 made in this video.
I always love your videos but being a game enthusiast, I was like OMG, they finally did a video on gaming. I hope you do another one soon...
PS I love you, Vox ❤❤❤
I appreciate the use of a teapot in the example.
(A teapot was one of the first rendered 3D objetcs, based off a real teapot. It's called the Utah Teapot)
Vox: "why video games are made of tiny triangles"
conpiracy theorists: iLuMiNaTi!!!
I just watched the PS5 demo video.
Thank God I saw this video before hand.
Minecraft: ARE YOU SURE ABOUT THAT
*OOF*
How many people already knew this but watched it to see how vox would explain it?
Sooooo minecraft is made out of triangles.....right?
Yes. The squares are broken into two triangles.
@@hikari_no_yume knows what's up
I don't think so
@@hikari_no_yume I am not sure. When you export a Minecraft world into .obj file and import it into blender you get get quadratic planes and not triangles. I think triangles are only used in komplex geometry, but I am not sure.
@@xd-games9748 yeah it's showing you squares (quads) but the software still sees that mesh as triangles. Quads are just easier to work with.
This video is a blessing to every designer who struggles to explain to their mom what they do lol
You made this video just so you could play games at the office? ;)
Often they are. That why a lot of channel who not game related has a video game video.
correction: the clip at 1:19 isn't from Monument Valley, it's from Monument Valley 2.
Talks entirely about polygons, doesn’t once mention that they’re called polygons 🤔
this is Vox, their audience probably doesn't know any fancy terms like polygon or computer
@@Mate_Antal_Zoltan ? Game devs refer to them as tri, not polygons unless it's specifically 4+ sided.
@@Mate_Antal_Zoltan I'm surprised you know how to spell "computer"
@@renaigh why is that, may I ask?
Makes me warm inside, when people explain on what I do for a living.
I'm gonna guess you're either a Streamer in your moms basement or an independent game designer...
1:53 so you refer “Rendering” as in changing my render distance in Minecraft?
Yup, by changing your render distance, there is less math to be performed for each frame hence you get better performance. Same for any game.
Well render distance just tells your computer how far out it can render. If you have a low render distance, you can't see objects far away, if you have a high render distance, you can see objects that are really far away.
I hate watching videos where I know the answer, but Vox always keeps me interested. Great video
BIG CHUNGUS WILL BE THE FIRST GAME MADE WITHOUT TRIANGLES
BUY NOW FOR OLNY 10000000$
There have been games made without triangles you noob
@@chairchair1231 I hate when I see people with no humor, I'm quite dissapointed
@@fatt_yoshi5507 in disappointed in you not being able to make a meme that could make me laugh noob
@@chairchair1231 stfu kid
@@danielm4874 triggered
to save you 5 minutes of your life: It's because smallest number of dots you have to have to define 2D surface is 3
I'm getting flashbacks to the great fairy from the old legend of zelda
Got targetted with this right after the PS5 33 million triangle release. You done well TH-cam
Pixels have nothing to do with triangles. You may have a whole character in the distance fit into a whole pixel.
Pixels are exclusively what the graphic card ships to the screen. They are unconcrete. Triangles are surfaces of the WORKING game world, with collisions and everything.
the reason is very simple: if you move any point of a triangle in any xyz direction the triangle keeps flat, if you do this with square or other, the polygon is deformed causing errors that will be displayed on the screen... just that
I'm here because Unreal Engine 5 is out. We got lots of triangles
it is not though
There are a couple reasons why you would want to split a game into triangles:
1. Any model can be split into triangles.
2. Triangles are convex.
3. Games are built on game engines which are built on graphics APIs like OpenGL, Directx, Vulkan, or metal, all of these graphics APIs just send drawing data to the GPU and when learning a new graphics API the first exercise is often drawing a triangle. Mostly because the graphics APIs allow you to draw triangle just with Vertex buffer and a Vertex array and sometimes a shader. But, you don't need indexed drawing to draw a triangle. Therefore, drawing a triangle is easier. So when you draw a square in these graphics APIs, instead of using the graphics APIs built-in functionality to draw quads, they use a index buffer of indices to do indexed drawing. Also in .obj files where models are stored (though most game engines use .fbx) the .obj file stores indices, vertices, and normals, therefore when loading a model from an .obj file you need to use indexed drawing. Therefore, you need to use triangles.
Yooooo new girl is kinda fine tho
Finally a media outlet that respects video games.
What about minecraft
You can form a rectange out of 2 triangles.
So triangles are basically the atoms of the gaming world. Got it.
Straight up spoiling Zelda: Breath of the Wild.
to be fair the games already been out for nearly two years
How is it a spoiler? 1. The game is old. 2. You see the final boss in the beginning of the game.
r/Woooosh
Soulja Games found a way to make video games out of tiny dodecahedrons.
Wait, did they answer the question ?
0:15: "games today are meticulously detailed"
Pokémon Sword and Shield: 👁️👄👁️
This video could have been so interesting and have so much cool info. But instead it just showed some gameplay and explained very basic geometry. Vox usually does so good videos but this was just short and dumb. I know you can do better, just try to go deaper next time.
Yeah, I felt like the video ended too quick and just got “pixels are square but computers prefer triangles”
Really, I thought this video was quite informative and interesting. It explains a simpler and basic concept for everyone to understand.
"Video games meticulously details"
Me:"Games today can't be ran on my computer" I'm looking at YOU *witcher 3*