A Game Engine Built For Optimisation

  Переглядів 138,384

Vercidium

Vercidium

День тому

Download the source code for the game engine and all my videos here: / vercidium
I spent the past 6 years creating a game engine and I've been shocked at the things that can make or break performance.
I've compared 2 sunlight rendering methods and created a 3rd method that runs 70x faster.
Music is Irradiant and Spirit by Disjoint Square
disjointsquare.bandcamp.com
Timestamps
0:00 Intro
0:22 Skybox Lighting
0:57 Breaking the 4th Wall
2:04 Among Trees
2:28 Dynamic Beams
3:40 Transform Readback
5:00 Final Solution
#gamedev #gamedevelopment #gameengine

КОМЕНТАРІ: 409
@SatisfiedOnion
@SatisfiedOnion 17 днів тому
I can sleep well at night knowing that my TI-NSpire 84 calculator will always be able to run this man's games
@Stromoto
@Stromoto 17 днів тому
Maybe Vercidium will make sure that your TI-NSpire 84 calculator can finally play Sector's Edge in the future
@attilavs2
@attilavs2 16 днів тому
"The Nspire 84 can't hurt you, it's not real" The nspire 84 :
@NoorquackerInd
@NoorquackerInd 7 днів тому
Frick, as someone that got into embedded because of calculators, now I wanna port this to the Nspire
@cinderwolf32
@cinderwolf32 6 днів тому
Aside from Nspire 84 not being a thing: I learned much of my initial programming knowledge on a TI-84 Plus Silver Edition, and I think that really taught me to value efficiency. Love seeing other people with similar stories!
@bacon_with_brussels_sprout
@bacon_with_brussels_sprout 17 днів тому
Jokes on you, my shitty laptop is still gonna find a way to lag from just rendering glorified pngs
@CharlesVanNoland
@CharlesVanNoland 17 днів тому
I'm a sucker for coding stuff to run on ancient hardware because I started coding when I was a preteen in the 90s, when you had to know how to get the most out of a computer or your game ran like unplayable garbage. Nowadays devs just do whatever and ignore performance and optimization because they just let their end-user's hardware go to waste. EDIT: Indie devs, for the most part, is who I was referring to, but also companies like Bethesda that build layercakes of flashy FX ontop of their ancient engine.
@cosy_sweater
@cosy_sweater 17 днів тому
I have a decent pc that can even run Cyberpunk 60fps. But for some unknown reason it freezes randomly even with no load. Like im experiencing 10 second freezes: on desktop; on lockscreen; opening explorer; randomly at any point. So even if the game can run at 10k fps on a calculator im still gonna have ~0.1fps
@pluralphilosophy6657
@pluralphilosophy6657 17 днів тому
Jokes on you my shity laptop freezes when loading regular pngs
@alfiegordon9013
@alfiegordon9013 17 днів тому
​@@cosy_sweatermight wanna have a look at your power supply, if it's defective it could have random voltage drops on certain lines that would cause GPU issues
@theairacobra
@theairacobra 16 днів тому
@@cosy_sweater i've had a similar issue, it was my motherboard doing silly things to the RAM voltage which sometimes crashed my entire PC, what motherboard do you have?
@sharksandbananas
@sharksandbananas 17 днів тому
Amazing z-buffer visualization, never thought of the data in that way before!
@lf6914
@lf6914 17 днів тому
There is also a much better way to render volumetric lighting. It's called "Froxels". It was first introduced in Assassin's Creed Black Flag and was later adopted by EA, Naughty Dogs, Rockstar and many more! And also it looks absolutely stunning!
@juliandurchholz
@juliandurchholz 17 днів тому
That's a state of the art approach, but what's "better" or "worse" really depends on your goals and target hardware ;)
@rednicstone3299
@rednicstone3299 17 днів тому
@@juliandurchholz its not really state of the art, its close to 10 years old at this point. It ran great back then, and if you cant run foxels, you might as well give up running anything serious. Also it looks great in comparison with the nonsensical method proposed in this video.
@buzinaocara
@buzinaocara 17 днів тому
@@rednicstone3299 Yeah. they were first used in Assassin's Creed Black Flag for XBone and PS4 if I'm not mistaken.
@juliandurchholz
@juliandurchholz 16 днів тому
@@rednicstone3299 Well, RDR2 and Last of Us 2 use it, for instance. What more modern approaches would you say it's been succeeded by?
@SimonBuchanNz
@SimonBuchanNz 16 днів тому
​@@juliandurchholz"state of the art" technically just means "what the people that know what they're doing use", but the common use is "just invented, best available way to do something".
@buzinaocara
@buzinaocara 17 днів тому
This works somewhat ok for your specific scene because you expect a buch of sparesly scattered beams in that specific scenario. This will just look weird in a scene not covered with trees, becaue those few hundred beams will not average out into a homogeneus volume, and if you increased their amount to the point where they do, you will be running slower than aproach nº 2, and will be severely bottlenecked by fillrate. You also seem to be spawning the beams from the floor towards the sky and checking for the shadowmap at that position. That means a beam that is being occluded by a tree before it hits the floor gets faded out in its entirety: no beam after the tree NOR BEFORE IT. That too might not look so obviously wrong in that scene, but can look decidedly worse in scenarios with higher depth complexity. Its a clever hack, but with very limited aplicability.
@kabinet0
@kabinet0 16 днів тому
I agree, it's certainly no volumetric light system. Definitely cool, but more a highly specific trick than anything else. Unrelatedly, the CPU readback being involved immediately makes me dislike the technique. It would be slightly less painful if they operated on the opacity data in a compute shader. Kind of does get me thinking about some kind of cached (perhaps voxel based) approach though.
@DireWolfAirstrike
@DireWolfAirstrike 16 днів тому
As long as the trees are also receiving shadows, I imagine you could do the same technique at the edges of those shadows. Looking at the window lighting that inspired this technique, I'd expect it to be one of those things like billboarding where it's "good enough" until you really pay attention to it.
@Vercidium
@Vercidium 16 днів тому
Can you please elaborate on your second sentence about a few hundred beams and homogenous volumes? Great point about checking from the floor up. An enhancement could be to check the min and max shadow depth values of each sample, then render the beam between the highest position and the lowest position (using the same opacity formula)
@Vercidium
@Vercidium 16 днів тому
@kabinet0 persistent mapped buffers and fences allow the CPU readback to happen asynchronously. With 2048 beams that's 2048 * 6 floats * 4 bytes = 49kb of data, which isn't enough to cause a bottleneck
@buzinaocara
@buzinaocara 16 днів тому
@@Vercidium Your aproximation looks somewhat plausible in a scene with very spotty coverage such as bellow trees. A swiss cheese world would also apply hahaha. But try doing that in a wide open landscape. You will still have a bunch of randomly scattered beams instead of a homogeneous solid fog volume. The random beams will make no sense (what is dividing light up into small spot-light-like rays in an open sky?". It will look more like rain than fog in that context. I said "few hundred" out of guesswork. I dont know how many billboards you are actually spawning across the scene. But still, in reasonably consistent and robust implementations of god-rays the same fog that creates these small beams in some scenes, is the fog that creates a dense Z-buffer-fog-like effect in other contexts. Its all recreations of real-world light scatering and shadowing interacting. For good reference of how broad the effect is, take a look at a RDR2 presentation on their atmospherics system they show comparisons to real world and artistic depictions of the same phenomena. AC4:BF also has a description of their implementation in a graphics presentation of theirs, which I believe was the firsr shipping "Froxel" solution. TLoU2 also has an extensive presentation on myriad optimisations and quality improvements they did to it. All that said, what you came up with is still a clever little hack that can work in specific scenes. For a broader game you'll probably want some artist control over where billboards spawn and where they don't, so they are limited to places where they look plausible. If you have a clearing in the forest for example, you'd want to have no beams in the middle of it because then again, they'd lool like weird rain in that context instead of light. Even for a window, your solution might look inproper once you have dinamic objects. Since oclusion is checked from the floor, if a character steps in front of the window, not only will the beams be bocked from reaching the floor, they will misteriously not even hit the character either. A tall enough window and a short enough dynamic object can create a very visible effect of a moving object magically making the sun-rays disapear from the window as long as it passes over the sun-lit part of the floor. PS: I just rewatched the video and remembered your trick is to only draw beams "at the edge of light". Yeah, that reduces the occurance of the "light looking like rain" problem I described. Yet, the reality is that those wide open spaces should also have the volumetric light in them (including the ocean) just instead of scattered beams, it should be a larger volume. Your solution emulates the "feeling" of a subset of a light phonomena, rather than the real thing. Thats why I recomened looking up the RDR2 presentation, they really explain all the different cases where atmospheric scatering can influence a scene.
@magnomliman8114
@magnomliman8114 17 днів тому
This optimization content is super interesting man.
@nevintilch4962
@nevintilch4962 17 днів тому
If you and acerola collaborated on a project, you would somehow manage to optimize something to render at the speed of light in a 360° POV with 4k resolution on every texture and also the game would do my homework and take me out to dinner
@farianderson168
@farianderson168 14 днів тому
Hahahaha 😂
@divyamkhatri8501
@divyamkhatri8501 4 дні тому
you forgot that to expect to run at calculator
@HellmiresKitchen
@HellmiresKitchen 17 днів тому
Maybe it's just me but the second approach still looks 100 times better than the last one. Last one makes it look like some early 2000s game
@trued7461
@trued7461 17 днів тому
It does look better but 100 times better is pretty close to 70 times which his how much performance is saved, so tbh, worth it maybe?
@HellmiresKitchen
@HellmiresKitchen 17 днів тому
@@trued7461 there is probably a middle ground where you gain a little bit of performance and it actually looks the same. But from those images it ain't it chief
@trashtrash2169
@trashtrash2169 17 днів тому
They could be made wider. Maybe dynamically. They're pencil thin. Maybe if they're full opacity they're also double width and you scale the same as opacity...
@muggzzzzz
@muggzzzzz 15 днів тому
It still could be useful for mobile game development.
@martinsanchez2395
@martinsanchez2395 12 днів тому
For people with potato PC's is much better than disabling the effects all together
@digitalgh0stt
@digitalgh0stt 17 днів тому
It looks alright, but you can tell all the beams are the same size. I wonder if increasing their width with the decrease in opacity would help make the overall scene look better and less uniform. Kind of simulating the beams becoming blurrier.
@cortanathelawless1848
@cortanathelawless1848 6 днів тому
I love people who focus on optimisation because besides the truly impressive technical skills, you only get into optimisation out of two reasons: you cant run your own game/feedback from players, or and thats the reason i respect a lot because they want to make games more accessible. Games are art, more people should be able to enjoy art. Thank you!
@mz_eth
@mz_eth 16 днів тому
The editing on this is stunning 😍Also the fact that it was all about lighting had me instantly in love
@Vercidium
@Vercidium 15 днів тому
Thanks Zeth! I agree, we need more videos about lighting
@alexm666
@alexm666 16 днів тому
I don't know what's more precious in your videos - the insights to the amazing rendering tricks or the way you visualize them!
@knyght27
@knyght27 17 днів тому
Very interesting! Always happy to see optimisation techniques explained in beginner-friendly terms
@mezohx
@mezohx 17 днів тому
I learned more in 5 minutes by watching this video than I did in a week doing my own research. Wild
@athithyaparamesh8251
@athithyaparamesh8251 17 днів тому
NVIDIA hates this guy
@L.lawliet-bx9vb
@L.lawliet-bx9vb 17 днів тому
😂😂😂😂
@juliandurchholz
@juliandurchholz 17 днів тому
Hey there, good video! Certainly a decent way to fake light shafts, but I wouldn't say it "looks the same" as raymarched volumetric lighting. True single-scattering will always be the most convincing second to raytracing. Your technique appears more flat and is restricted to a fixed amount of random light shafts, which probably leads to scene-dependent artifacts. What's your hardware for the given benchmarks? Would be nice to have that included somewhere. The "first" approach (screen-space post process) can also be extended to somewhat work for off-screen light sources, to a degree. Are you sure using an intermediate texture with directional blur is superior to epipolar sampling with weight function, as per the traditional GPU Gems 3 solution? I wish your video was a bit longer to cover those details and nuances, go into more depth when comparing other techniques, so as to really give an impression of the tradeoffs.
@Vercidium
@Vercidium 16 днів тому
I haven't heard of epipolar sampling, I'll check that out thank you! I have a 10700F CPU and an RTX 3070 GPU
@abhishekak9619
@abhishekak9619 10 днів тому
@@Vercidium i dont know what both of you are talking about. the other person never said epipolar sampling. am i missing something?
@Vercidium
@Vercidium 10 днів тому
@@abhishekak9619 epipolar sampling is in the 2nd last paragraph of the original comment here
@abhishekak9619
@abhishekak9619 10 днів тому
@@Vercidium oh i see now.
@nolram
@nolram 17 днів тому
I don't think it's fair to say this looks the same as fully integrated volumetrics. Like, sure, in this one particular scenario in a forest where you want lots of small shafts this may work great, but what about other outside scenes where they aren't as closely occluded? What about local lights? What about generally open areas where the vast majority would be fog-filled? Generally this is a lovely technique for those very specific small beams of light, but I don't think this is anything even remotely close to volumetric scattering - hence why there aren't many games that use this particular method. Great video nonetheless, even if I would have hoped for a few more details about placement and transformation of the beams.
@FrostyFortBoi
@FrostyFortBoi 6 днів тому
this is really interesting. I look forward to see what you learn and achieve during your game engine development
@martin128
@martin128 17 днів тому
I think the static 2d planes variant of god rays was used in multiple games in 00s. I think Hitman 2 has it and Freedom Fighters, both are from IO Interactive.
@Capewearer
@Capewearer 16 днів тому
Even Crysis 3 uses them, and still looks stunning. But such usage is limited to static scenes only. For dynamic things Crysis 3 uses screen-space Godrays effect. Works pretty well.
@Digiur
@Digiur 16 днів тому
Is that "optimized"? Or is it a completely different technique?
@perplexedon9834
@perplexedon9834 6 днів тому
I think it's fair if the output looks comparable to the human eye. The thing that is being optimised is the graphical output, not the completion of a specific process. The fast inverse square Quake is a classic example. If someone replaced the true inverse square with the fast inverse square, I'd certainly consider that an optimisation even though it technically gives a slightly different output and technically isn't the inverse square.
@Digiur
@Digiur 6 днів тому
@@perplexedon9834 Sure, sure. Some results different techniques. Not "optimization".
@survival_man7746
@survival_man7746 3 дні тому
That's why it's much faster, it was reengineered. It is less acurate but still looks good like transforming a map into a grid for pathfinding
@Digiur
@Digiur 3 дні тому
@@survival_man7746 I'm just being pedantic about the word "optimize"
@nathanfranck5822
@nathanfranck5822 17 днів тому
I had no idea a Feedback buffer was a thing! Thats cool
@sannyassi73
@sannyassi73 7 днів тому
Very clever. I never got into the technical side of things but when I worked in CryEngine (2007-2015ish). I was the optimization guy in the editor- did most of the optimizations for Mechwarrior: Living Legends environments... Kagoshima (a MW:LL level I designed) took a lot of tricks to get to run reasonably. Making Levels for that game/mod are some of my best memories, and it's still alive today, 15 Years later!
@mrousavy
@mrousavy 16 днів тому
nice work! i love these kinds of videos
@brothermangaming
@brothermangaming 10 днів тому
big fan of optimization, good shit mate will be keeping an eye on this
@mypaxa003
@mypaxa003 17 днів тому
5:08 "In this video on screen" Where? I dont see anything.
@Vercidium
@Vercidium 17 днів тому
Just added it, thanks for letting me know!
@callibor3119
@callibor3119 16 днів тому
I think the best move is color your models and textures like if light actually hit and color it like if light didn’t. What’s going on from I am seeing is everything is completely singularly functioned and not programmed to act like how light should hit the environment. The light shouldn’t be faked, but how you color the textures and models can be faked to the point that it looks real. If you let the engine itself do all the work, you won’t get the performances with its default settings, so getting the models and textures early on in development to look like it is real-time before the game engine, can break the limits of the engine and you won’t see the work break itself.
@DdiiaabbllooBlanco
@DdiiaabbllooBlanco 4 дні тому
>Sees video title that I'm interested in. >All I hear is static in my brain with the well put together information because I don't understand. >Nice video.
@Skeffles
@Skeffles 11 днів тому
What a fantastic improvement!
@SylvesterAshcroft88
@SylvesterAshcroft88 17 днів тому
This is so incredibly clever!
@fiffy6572
@fiffy6572 17 днів тому
This is crazy This channel deserves so much more!!! Keep going with your amazing work! So inspirating for people like me who would love to make video games and also like the software engineering behind it!
@Vercidium
@Vercidium 16 днів тому
Thanks so much!
@farianderson168
@farianderson168 14 днів тому
Yeah, this channel is so much fun and inspiring for people like us who want to get involved in engine and optimization stuff. Probably not for those who think they know everything already, but great for me. I wish there was more contents and devlogs like this. It's like a light in the darkness.
@Vercidium
@Vercidium 13 днів тому
That means a lot to hear, thank you
@zachbaldwin2925
@zachbaldwin2925 16 днів тому
The dynamic beam approach was very interesting. I couldn't help but consider biasing the "dynamic beam" size/ density depending on distance to camera or splaying thebeam's mesh from the threshold of object and sky towards the ground, creating a trapezoid, to emulate penumbra.
@IstyManame
@IstyManame 16 днів тому
Yea you definitely do not have adhd lol
@coreyscanlon1238
@coreyscanlon1238 6 днів тому
Idk this seems like the video is a product of hyper focus and that outta the box thinking. ADHD all over it
@RawFish2DChannel
@RawFish2DChannel 16 днів тому
Another banger video! I always find it very interesting when people find alternative ways of creating same visual effects but in much more optimized way. I also thought about optimizing one effect called SSR (Screen Space Reflections) and came up with a completely different way of doing it, but I haven't tested it yet. Also would be very interesting to see attempts of recreating ray tracing/path tracing with roughly same quality, but a lot more performance, since ray marching is very heavy task for a fragment shader. Would be very interesting to see alternative ways of doing it.
@OGPatriot03
@OGPatriot03 16 днів тому
The end result isn't stunning to me visually, however the approach to get there is highly intriguing and gives me all sorts of ideas. These videos are great for getting the indie dev mind thinking.
@VaibhavShewale
@VaibhavShewale 9 днів тому
ooh man this one is just mind blowing!
@askeladden450
@askeladden450 17 днів тому
bro out here casually dropping absolute masterpieces every month
@LimakPan
@LimakPan 11 днів тому
So it's not lighting, but god rays?
@darkfllame
@darkfllame 5 днів тому
not gonna lie, i'm developping a 2D automation game and i'll make so that it can run smoothly on the most shittiest laptop you've ever seen. 16 bits vertex data, instancing and more. And the maps could be HUGE, up to 2^70^2 tiles: by separating the world into regions split into chunks. All of that with not that much resources consumption (in theory). I haven't done the game yet and i hope i could share it to the world. god dammit i love game dev. Also everything will be done with opengl in zig ! I'll a devlogs when I finish the rendering stuff (at least some sort of good rendering)
@user-di4vu2gl1p
@user-di4vu2gl1p 4 дні тому
awesome ,thank you for a great job
@williamabousharaf8980
@williamabousharaf8980 12 днів тому
Nice work and nice presentation
@user-wg2eh3iy5r
@user-wg2eh3iy5r 11 днів тому
Very cool and you got a new sub.
@mild2616
@mild2616 14 днів тому
Idk if this just common knowledge or if this man is just a genius but my god the game space is gonna be so much better from here on out if this guy is working on em. Great video!
@HypeLozerInc
@HypeLozerInc 17 днів тому
Legend
@ExtraTrstl
@ExtraTrstl 16 днів тому
You’re doing divine work here.
@jordanfarr3157
@jordanfarr3157 15 днів тому
Incredible!!
@Tikai77
@Tikai77 14 днів тому
I just discovered your channel and it's awesome! I wanted to know if you've ever thought about making videos where you explain how things work / how things are optimized in other video games? (for example RDR2 lighting / clouds etc...) It could be fun I think, anyway gg!
@SirGilt
@SirGilt 4 дні тому
if we like this, and get this to the front page of youtube, we may see better performance in games if we are lucky.
@fffrikkie1236
@fffrikkie1236 17 днів тому
I like your content man, very well edited. Just wondering (and sorry if it's a stupid question), but do these optimizing techniques translate to other game engines or are they just specific to the one you're using?
@vexflorez6220
@vexflorez6220 17 днів тому
If you want to, you can apply these optimization techniques yourself to other engines, though that means throwing away what the engine itself offers and writing things from scratch, while also building it in such a way that it works with all the other parts of the engine.
@Vercidium
@Vercidium 16 днів тому
This should be possible in any engine that supports shadows and vertex readback. For example Valheim uses a custom render pipeline within Unity, I reckon they could add beams of sunlight like this.
@floschy_1
@floschy_1 9 днів тому
1:19 I didnt know I need this visualisation in my life, but i do.
@ka-uy8yh
@ka-uy8yh 16 днів тому
Vercidium; God emperor of Game Optimization and priest of frames per second love what you do
@Vercidium
@Vercidium 15 днів тому
Hahaha thank you
@JackTheOrangePumpkin
@JackTheOrangePumpkin 17 днів тому
Perfect i love it!!
@omgnowairly
@omgnowairly 16 днів тому
These videos are brilliant.
@sandwich2473
@sandwich2473 16 днів тому
That's really really cool :O
@BMRG14
@BMRG14 17 днів тому
Perfect perfect video and info, with a very bad title. :( It's not even searchable really.
@AkshayKumarX
@AkshayKumarX 17 днів тому
This is the norm now with majority of youtube channels. Titles and thumbnails like these drive curiosity and get people to click on the video. Then the creator increases the viewer watchtime by being as vague as possible for the first minute or so to game the system and boost the video's popularity. The downside being that if you aren't staying up to date with every new video, old content is almost impossible to find via search.
@Vercidium
@Vercidium 16 днів тому
Thank you :) I come up with 5-10 different titles and thumbnails for each video and test each of them, then leave it on the one that brought in the most views. It's all an algorithmic game
@matthewboyd8689
@matthewboyd8689 5 днів тому
Misread the title Thought it said gamers are for optimizing Started thinking about talk that a game developer said something about, gamers will optimize the fun out of a game. And I realized that in my own life and working life I've been optimizing things to work more efficiently as well. And to such degree that at one point I realized I was turning away experiences that I actually wanted to do just because it conflicted with my schedule that I made up and didn't have to follow.
@Vercidium
@Vercidium 5 днів тому
That’s deep. I can relate to this
@Ronin03
@Ronin03 7 днів тому
I always find it fascinating to see experts go ham in thier in their interests and listen in no matter how much i actually understand on the subject at hand 😂
@jacktruong7151
@jacktruong7151 10 днів тому
I've to rewatch this over and over for about 7 times just to catch up with wtf is going on lol Damn cool
@Vercidium
@Vercidium 10 днів тому
Hahaha thank you
@cookietheory
@cookietheory 15 днів тому
Great video as always!
@Vercidium
@Vercidium 15 днів тому
Thank you!
@poggarzz
@poggarzz 17 днів тому
I may not understand everything but I surely can appreciate the beauty of it all.
@Greywander87
@Greywander87 16 днів тому
The key to creating a simulation that is both accurate and fast is to forget about accuracy, cheat as much as possible, and tell no one. No but for real there will be times when relying on good old RNG gives a result that is only slightly worse than running an expensive simulation. The real key is finding shortcuts and approximations that get you that "good enough" result where no one can honestly tell it isn't 100% accurate without costing too many system resources. Creating an accurate simulation is only half the job, the other half is figuring out the tricks that let you run the simulation in real time.
@r2d2vader
@r2d2vader 17 днів тому
First Edit: Great video! But the end screen video doesn't seem to show up.
@6Eev
@6Eev 17 днів тому
beat me to it 😔
@Vercidium
@Vercidium 17 днів тому
Thank you! I've just added it
@whitneysmiltank
@whitneysmiltank 17 днів тому
These are the best videos on youtube.
@Vercidium
@Vercidium 16 днів тому
Too kind, thank you!
@patty4449
@patty4449 11 днів тому
Ok I can add on this... When the day passes less beams should be on screen... Beams should't be statics but move slightly over time... Great concept... But I still can't get dynamic snow done in this way as the sheer amount of vertex points saved is the problem... Im getting closer tho...
@gordzen123
@gordzen123 17 днів тому
Not only you're so good at optimizing and using shaders, you also make great videos, great content sir!
@Vercidium
@Vercidium 16 днів тому
Thank you!
@milanst6385
@milanst6385 17 днів тому
Beams of light in games is called god rays
@Chris-op7yt
@Chris-op7yt 9 днів тому
light is everywhere, except where there is shadows, which much attenuate it
@I2ed3ye
@I2ed3ye 17 днів тому
Now all my games run so well!
@penial_
@penial_ 15 днів тому
Another wonderful video from sectors edge guys
@Vercidium
@Vercidium 15 днів тому
Thank you :)
@dayanson6920
@dayanson6920 16 днів тому
This feels like how the ps2 went from playing the game Bouncer which was blocky as hell to FFX/X-2. They optimized the fuck out of that system. I do wish more studios did this to their game instead of just relying on Unreal/Unity to do it.
@nicklasfejersen4202
@nicklasfejersen4202 11 днів тому
i can't wait for someone to implement this into a minecraft mod
@JMO-
@JMO- 17 днів тому
In an old game prototype I made, I had a lot of grass models placed around the world, but they were physical objects and would lag a lot when loading/unloading and area because of them. There is probably a way to use a shader instead of the grass actually being real while still giving me a way to control where the grass is and have the player model interact with it (I'm just not good enough at shaders to make it). That could be a cool video idea, I would love to see you render millions of blades of grass a few thousand times a second lol.
@kabinet0
@kabinet0 16 днів тому
Take a look at Acerola's series on modern grass in video games, it's a really good watch and describes pretty much exactly what you're talking about.
@Vercidium
@Vercidium 16 днів тому
^ Acerola's video on grass is excellent. My grass rendering is still pretty naïve, I have a lot to learn about vegetation rendering
@farianderson168
@farianderson168 14 днів тому
@@Vercidium i think Acerola's approach laks your way of optimising memory for meshes by using only vertex indices. Also you have your own engine and probably don't need to run a compute shader each frame just to have a vertex buffer filled (that's what DrawMeshInstancedIndirect does in unity i think). Would really love to see how you implement grass, probably in future videos
@Jabjabs
@Jabjabs 16 днів тому
I would recommend folks look at the GDC talk for how light beams were handled for the game Abzu. Very cool. In that talk as well is a great summary of how to animate thousand of creatures simply via vertex offsets on the GPU - but that isn't so related to this.
@Vercidium
@Vercidium 15 днів тому
Thank you for the recommendation, I'll check it out
@darkfllame
@darkfllame 5 днів тому
babe wake up Vercidium uploaded !
@terrylyn
@terrylyn 8 днів тому
Cool algorithm, graphics programming is so much fun!
@deWolffff
@deWolffff 17 днів тому
Incredible.
@atunalamarinera
@atunalamarinera 10 днів тому
Maybe it can't replace the second method but surely it will replace the first one, not only runs faster but also looks better.
@omabang5002
@omabang5002 17 днів тому
I have no idea what is this or why this video recommended to me but it's very cool!
@Vercidium
@Vercidium 16 днів тому
Haha glad you liked it!
@maksiksq
@maksiksq 8 днів тому
Amazing
@Roxor128
@Roxor128 7 днів тому
I wonder: what about a voxel map for where light goes? The map would be a 3D greyscale texture (you can tint it later). Initially fill it with all-white voxels, black out voxels where solid geometry exists, then do a directional blur away from the light sources (which would be a single direction for the sun, given it's far enough away that its rays can be considered parallel by the time they reach Earth), and repeat the black-out and blur steps a few times. When rendering, sample the voxel grid along the camera ray to get side-illumination data using a 3D texture sampler. You'd have to experiment to find how low a resolution you can get away with, but it could allow pre-calculating some of the lighting data, and as a bonus, you'd know ahead of time how many steps to take along the ray during rendering, just from the grid resolution and distance. If your swaying trees follow a predictable loop, you could calculate a few frames of voxel lighting data and select from the appropriate one, or even interpolate between them. I have no idea how fast this would be, and it absolutely would be memory-hungry, but by transforming the volumetric lighting to image-processing (just in 3D), it might be faster than doing the real thing. With luck, you could do it at load-time, or chunk-generation, rather than having to keep it on disk. Hell, you could probably do it in a compute shader on the GPU, so the CPU never needs to touch it. Now that I think about it, it sounds like it has a bit in common with Quake's lightmaps, except 3D and only concerned with direct illumination.
@swagatggautam6630
@swagatggautam6630 12 днів тому
This guy deserves a Nobel prize for Game Development.
@Vercidium
@Vercidium 9 днів тому
Haha too kind!
@Aminsx_
@Aminsx_ 13 днів тому
The 3rd method in the first chapter of the video reminds me a lot of LIMBO
@bunnybreaker
@bunnybreaker 16 днів тому
As a gamedev that likes to target potato hardware, I am very impressed with such hacks. Kudos 👍🏽
@bewky
@bewky 17 днів тому
so smart!
@solhsa
@solhsa 16 днів тому
Wow, someone actually found a use for transform feedback.
@kaleygoode1681
@kaleygoode1681 16 днів тому
If it's through leaves, the flickering isn't necessarily wrong - just annoyingly flashy, as flickering leaves are in real life! But crepuscular rays through clouds shouldn't flicker, so this is great for those
@SSS333-AAA
@SSS333-AAA 11 днів тому
dude this is crazy, i'll rewatch when you translate this from smart to english.
@Vercidium
@Vercidium 9 днів тому
Hahaha thanks
@SSS333-AAA
@SSS333-AAA 9 днів тому
@@Vercidium why the fuck are you responding to me, there are genuine great questions down here you can read rather than read our shitpost.
@bs_blackscout
@bs_blackscout 14 днів тому
btw this is a much better title the previous one felt like a copy paste from another video I've seen before
@bl4ckk
@bl4ckk 17 днів тому
I can't decide what's better, the split transitions, or the light rays
@Vercidium
@Vercidium 16 днів тому
Haha thank you. I had to render it at half speed as my GPU couldn't render all 3 scenes at 60 FPS
@a6gitti
@a6gitti 17 днів тому
damn bro! i shall call you shadow man
@C_Corpze
@C_Corpze 17 днів тому
Dude if you worked as an employee for Unreal Engine I think the engine and it's tech could be even better looking and more impressive than it already did.
@Vercidium
@Vercidium 16 днів тому
Thank you but the devs at Unreal are a lot smarter than I am haha
@C_Corpze
@C_Corpze 16 днів тому
@@Vercidium I definitely think you're smart, but you do have a point though. I've seen some Unreal Engine source code and it's some black magic hooha what they do there sometimes. Love your content tho, I learn a lot from you too!
@LinguisticMirage
@LinguisticMirage 16 днів тому
that plane light thing is something from the early 2000's for example gta san andreas does that
@JCMSimon_
@JCMSimon_ 8 днів тому
Great video. Thats all i have to say tbh... which is why ill ask a off-topic-ish question instead, What did you use to create all the motion graphics like the diagrams and the code boxes?
@Vercidium
@Vercidium 8 днів тому
Thank you, it’s all done using code and then screen recorded. I used C# and SkiaSharp for the diagrams, and RichTextKit for the syntax highlighting
@raniem4368
@raniem4368 2 дні тому
Just watched some of your older videos. I'm very impressed by the Raytraced Audio. Would it be possible to make a video on how you did it? Like your recent videos? Thank you -A Fan
@raveltammeleht6278
@raveltammeleht6278 14 днів тому
Not sure how well it would fit to a realistic environment. But for some people this might be useful indeed. Its a oldschool trick. Games like hl2 and mp2 place sprites under lights, making them seem volumetric. You are doing the same, but with nodern languages. So I personally dont find it very interesting. Since it still wouldnt run in a windows 98 or XP machine. Yet the technique is from that era.
@CaioStange
@CaioStange 17 днів тому
only problem i see is when the sun's rotation changes quickly, as in 4:53. The rotation pivot should be on the object castig the shadow on the beam, not on the beam's contact with the ground. Outside of that, great approach!
@CaioStange
@CaioStange 17 днів тому
I guess you could turn accumulation off on these moments and it should look alright
@CaioStange
@CaioStange 17 днів тому
also i guess make the sprite used for the beams less blurred, to make it look higher res
@Vercidium
@Vercidium 16 днів тому
Yes that's true haha, I'd like to fix that. You'd only notice it in a timelapse as the sun moves pretty slowly in-game.
@dmigul
@dmigul 13 днів тому
I'm thinking about giving a try for compute shaders to do averaging.
@SaenGaems
@SaenGaems 15 днів тому
would be cool to have the beams also move a little with the wind applied to the trees, looks just a little too static
@Vercidium
@Vercidium 15 днів тому
That's a great idea! I could shift the beam towards the samples that are in the light
@Mushroom38294
@Mushroom38294 9 днів тому
We need more game devs like you, I'm sick and tired of games taking up loads more resources than necessary
@saemideluxe
@saemideluxe 16 днів тому
The visualization of the fragment shader output, with all the colored, positioned fragments, was amazing! Can you explain how you did that? Was it a simulation or is there a tool that helps with this?
@Vercidium
@Vercidium 16 днів тому
Thank you! It's a simulation, I used GL_POINTS to render each pixel, using the colour from the final image. Each pixel was then positioned by sampling the depth buffer in the vertex shader, then re-creating its 3D position from the depth value. I don't fully understand the matrix math, but it's explained well here: stackoverflow.com/questions/32227283/getting-world-position-from-depth-buffer-value
@saemideluxe
@saemideluxe 10 днів тому
@@Vercidium Wow, impressive. Thanks for the explanation.
@turbet5
@turbet5 День тому
This engine should be adopted to VR and Quest 2/3 VR really needs more quality while having max FPS and resolution BTW: can you implement AgX tonemapping?
Why Unreal Engine 5.4 is a Game Changer
12:46
Unreal Sensei
Переглядів 549 тис.
I Optimised My Game Engine Up To 12000 FPS
11:58
Vercidium
Переглядів 423 тис.
McDonald’s MCNUGGET PURSE?! #shorts
00:11
Lauren Godwin
Переглядів 26 млн
"Поховали поруч": у Луцьку попрощались із ДВОМА Героями 🕯🥀 #герої #втрати
00:15
Телеканал Конкурент TV - новини Луцька та Волині
Переглядів 231 тис.
Making a WATERBENDING Game with REALISTIC Water | Twisted Waters Devlog #1
9:16
Why Some Designs Are Impossible to Improve: Quintessence
33:03
Design Theory
Переглядів 604 тис.
I made a Pixel Font ... it's not easy
4:10
Lucky Jacob
Переглядів 6 тис.
I Remade Minecraft But It is Optimized!
9:39
Low Level Game Dev
Переглядів 75 тис.
Blazingly Fast Greedy Mesher - Voxel Engine Optimizations
23:35
Better Mountain Generators That Aren't Perlin Noise or Erosion
18:09
Josh's Channel
Переглядів 223 тис.
Optimizing my Game so it Runs on a Potato
19:02
Blargis
Переглядів 214 тис.
Dear Game Developers, Stop Messing This Up!
22:19
Jonas Tyroller
Переглядів 666 тис.
I Paid Fiverr Game Developers to Make the Same Game
10:25
BadGameDev
Переглядів 589 тис.
I Bought a Recording Jammer. It’s Legal.
14:00
Linus Tech Tips
Переглядів 1,2 млн
براول ستارز ضد زوبا #brawlstars vs zooba
0:53
Lp. Последняя Реальность #64 НОВОЕ ТЕЛО • Майнкрафт
31:26
MrLololoshka (Роман Фильченков)
Переглядів 981 тис.
Phases of Grief Smiling Critters double
0:13
5G Vision
Переглядів 8 млн