An In-Depth look at Lerp, Smoothstep, and Shaping Functions

  Рет қаралды 150,519

SimonDev

SimonDev

Жыл бұрын

Exploring some common math that game developers use, let's look at linear interpolation and apply it to everything.
🛒 Recommended books (on Amazon): www.amazon.com/hz/wishlist/ls...
❤️ Support me on Patreon: / simondevyt
🌍 My Gamedev Courses: simondev.teachable.com/
Disclaimer: Commission is earned from qualifying purchases on Amazon links.
Follow me on:
Twitter: / iced_coffee_dev
Instagram: / beer_and_code
In this video, I cover lerp, also known as mix in GLSL, a common mathematical function used in game dev. It's extremely versatile, and we'll go through basic uses, as well as some problems and how to overcome them.
Some easing functions to try out:
easings.net/
iquilezles.org/articles/funct...

Пікірлер: 219
@simondev758
@simondev758 Жыл бұрын
Typo at the end! Should be b^(n+m) = b^n * b^m Btw, support me for more videos: GLSL Course: simondev.teachable.com/p/glsl-shaders-from-scratch Patreon: www.patreon.com/simondevyt
@tommysedin
@tommysedin Жыл бұрын
Holy crap! A long time ago, I was writing a multiplayer top-down shooter and I ran into a weird issue where the camera would start jittering like crazy, some kind of de-sync between the client and server. I never figured it out and just lost hope in the project, abandoning it. Fast forward *15 years* and at the end of a video about interpolation, there's a quick side-note about a common mistake when interpolating positions. And, if memory serves, that is *exactly* what I did with the camera. ...Holy crap..!
@5hirtandtieler
@5hirtandtieler Жыл бұрын
Time to pay a visit to your closet/storage unit and dust off the old hard drives....
@orisphera
@orisphera Жыл бұрын
What is the mistake?
@commenturthegreat2915
@commenturthegreat2915 Жыл бұрын
You're saying it jittered, so it's probably not the mistake mentioned here. (If you even consider it a mistake - it's so close to being perfect that you might as well use that solution). But if I were to guess, it's possible that you accidentally let t be larger than 1 - making the camera overshoot its target. If frame rates were low enough, you'd get jitters as the camera moves back and forth.
@oopy354
@oopy354 Жыл бұрын
Hey man, if your game is fun, I think you should just resume working on it. Don't bother with visual updates. The market needs more passion projects and fun games.
@DreadKyller
@DreadKyller 10 ай бұрын
@@commenturthegreat2915 They said the stutter is caused by a desync between server and client. If the server is running interpolation at a fixed timestep and the client is doing it based on framerate, then yes actually this would be precisely the type of thing that would cause desyncs in position.
@RineMarthen
@RineMarthen Жыл бұрын
i like the part where he said "It's lerping time!" and lerped all over the place
@simondev758
@simondev758 Жыл бұрын
Man, I really lost an opportunity to actually do that
@ChrisD__
@ChrisD__ Жыл бұрын
@@simondev758 The fact that you didn't do it makes the joke funnier.
@user-pr6ed3ri2k
@user-pr6ed3ri2k Жыл бұрын
​@@simondev75842thliker
@Kanibulus
@Kanibulus Жыл бұрын
Go Go Lerping Rangers!!
@vincei4252
@vincei4252 Жыл бұрын
Thanks, Simon. I'm lerping as a programmer but smoothing and shaping my path.
@Henrix1998
@Henrix1998 Жыл бұрын
This video needs to be waaayyy longer. I want more!
@Kenionatus
@Kenionatus Жыл бұрын
I'd say the length is very good. I feel like I now know what to google when I need to implement it and know the most common pitfalls. I'd just forget most of it if more info were crammed in the video. I'm sure there are more in depth videos on interpolation functions tho.
@doxed64
@doxed64 5 ай бұрын
This is exactly what I needed for my game. Camera Log Zoom and Frame Rate independent tracking for aiming. Thank you so much, Simon! Subscribed.
@OlegV5
@OlegV5 Жыл бұрын
Your smooth voice and professional animation and videos design gives your videos such nice aesthetics! Also love the knowledge you share with us
@GhostPandaFestival
@GhostPandaFestival Жыл бұрын
Nice linear/log zoom example! I was just staring at a linear fade in and thinking it didn't look good. I'll have to give log a try
@Kaeresh
@Kaeresh 9 ай бұрын
Hey Simon, I finally got around to implementing Lerps and I am very happy I kept your vid around. Helped a ton!
@magic-window
@magic-window Жыл бұрын
That's an effective lesson, explaining all these concepts, functions, and implementations in such short time.
@tomasskrivan3291
@tomasskrivan3291 Жыл бұрын
I didn't check the math exactly but the last example when you are following the target, you are effectively solving a differential equation. The initial fix by multiplying by timestep should be forward Euler method. Using the exponential is an exact solution to the differential equation, hence the frame rate independence. However, it is exact solution only if the target is stationary(maybe also in the case of linear movement). Therefore it is still not frame rate independent but the error is much much lower.
@Polygarden
@Polygarden Жыл бұрын
Absolutely astonishing video! I was aware of the lerp itself, but these tiny things, like the interpolation of colors to get nice gradients, which are very quickly overlooked while programming. I'm amazed by the solutions. Thank you very much!
@oo735
@oo735 Жыл бұрын
There is a mistake at 8:07 IG b^(m+n ) = b^m * b^n not b^(m+n) = b^m + b^n.
@unfa00
@unfa00 Жыл бұрын
I love these videos, covering basic concepts and tool sided in game development. I always learn new things and get a deeper understand of what I'm doing, and what I could do better. Thank you so much!
@mfucek_
@mfucek_ Жыл бұрын
A bunch of awesome concepts in just enough detail, great video!
@Eddygeek18
@Eddygeek18 Жыл бұрын
I've experienced 2 of the issues mentioned with deltaTime lerping and the camera zoom lerping problem. I found ways around both at the time but this video was very insightful and i've made some notes for these in the future as i'm sure i'll run into them again. I knew how lerp worked but i was always curious about smoothstep, it was funny cuz i've experimented with lerping between lerps so was a suprise that i was on the right track just didn't think of the sqrt. Great video Thanks!
@ardavanansari
@ardavanansari Жыл бұрын
This is gold. Thank you for all the effort you put into this beautiful video
@spliter88
@spliter88 Жыл бұрын
That bit at the end is especially brilliant! Thanks for the video!
@DarkSwordsman
@DarkSwordsman Жыл бұрын
Wow, I don't think I've seen such a useful video before, and it only was released a week or two ago. Major props, thanks for sharing
@Phillip_Anatra
@Phillip_Anatra Жыл бұрын
Yes! I've been looking for something like this! Thanks so much for making this video, now I know how to derive lerp functions
@paulpladziewicz
@paulpladziewicz Жыл бұрын
Good to see you making videos again! I always learn something.
@Banaaani
@Banaaani Жыл бұрын
Interesting stuff. My favorite functions in Unity game development always has been lerp and slerp because they are easy to use and extremely useful in many situations. Also I love their names
@erksp7961
@erksp7961 19 күн бұрын
Thank you! This helps me _understand_ the functions. Cheers!
@ironcommando2
@ironcommando2 2 ай бұрын
I gotta thank you a lot especially for that last one. My camera was lerping weirdly on different frame rates and that solved my problem!
@keyb
@keyb Жыл бұрын
Thank you Simon! I'm studying CS and this is amazingly useful.
@jorgegimenezperez9398
@jorgegimenezperez9398 Жыл бұрын
Loved this so much Simon! Thanks for the video 🙆🏻‍♂️
@ziggyharding5207
@ziggyharding5207 Жыл бұрын
I didn't know I needed this video until now, thanks!
@buzbuz33-99
@buzbuz33-99 Жыл бұрын
Amazing stuff. I've done all these kinds of things without LERP (e.g., moving objects, color transitions, camera tracking). So it will be interesting to see how I use these commands to improve my programs.
@Skeffles
@Skeffles Жыл бұрын
Great video. Really interesting to see how functions can combine to make smooth step.
@bartniem9
@bartniem9 Жыл бұрын
it's like all the fun parts of cs course without the boring parts
@zm7160
@zm7160 Жыл бұрын
Absolutely blown away by the insights offered by these videos. There is a lot of how to do XYZ game dev videos on KZfaq. But the depth and breadth covered on this channel🤌 You are a rare and beautiful beast. Thank you.
@leeoiou7295
@leeoiou7295 Жыл бұрын
I will appreciate more math videos like this. thanks
@gmjammin4367
@gmjammin4367 Жыл бұрын
I wish this video existed when I was getting to know all about these functions myself! Great video!
@rix0r222
@rix0r222 Жыл бұрын
that frame-time independent lerp will be useful, thanks!
@Dynamic-Productions
@Dynamic-Productions Жыл бұрын
Love how you always seem to be able to simplify things to make it easy to understand
@leshiq4214
@leshiq4214 Жыл бұрын
Thanks. That was really interesting and inspiring!
@thehambone1454
@thehambone1454 Жыл бұрын
Great timing, just implemented this in my little engine!
@emteiks
@emteiks Жыл бұрын
very nice, i like it a lot. short and on topic.
@thomasstern6172
@thomasstern6172 Жыл бұрын
Super cool video. Love to see more of those math videos :)
@ferinzz
@ferinzz 3 ай бұрын
I could see how I could have a whole library of different variations to lerp with some better names for what you want to do. Like the smoothstep. Thank you for this, it sounds awesome.
@CapsAdmin
@CapsAdmin Жыл бұрын
I've been doing smooth lerping as shown at the end wrong all this time! I did the exact same as the same as the second example, slapping on delta time. I was never satisfied with how it looked with low framerates as it gets jittery, so I tended to add some additional checks to make it not freak out.
@eliaspippenger5387
@eliaspippenger5387 Жыл бұрын
Hey, so some people (like me) might be calculating their lerp rate as t = K * (targetFrameRate / frameRate) instead of t = muchLargerConstant * frameTime {i.e. t = .35 * (60 / 240) instead of t = 21 * (1 / 240); this is if the result is supposed to be equally large, t = .0875 in both cases} bc they wanted to be able to write constants (K values) that were equal to the actual used lerp rate at a target frame rate, meaning a lerp rate between 0 and 1. If you use a K value from 0-1 in the second equation, your t value will be very low and cause slow lerping, thus you have to use a K value that is (targetFrameRate) times as large as the first equation (21 = .35 * 60) to get the same result. Basically, if you are ok with small lerp rates, then the second equation works fine with K being a 0-1 value, and the use of the equation presented in the video gives similar results. Using my method, however, means that your constants will not work the same way in the new frame rate independent lerp function. And if you, like me, instead of refiguring many different lerp constants, want to use the same constants to get the same result except truly frame independent, then you can use this method. After some fiddling with math, I found that you can add an extra constant out front of the (new) equation so that it becomes: t = A(1.0 - pow(K, frameTime)), where: A = K / (1.0 - pow(K, (1 / targetFrameRate))) It probably goes without saying, but this has the same effect if you were previously using something like: t = targetFrameRate * K * frameTime, as that is the same as my original equation. There is probably a shorter version of calculating A, but I didn't bother trying to condense it. A stands for Adjust, as it adjusts the result of the new function to be identical to the result of K * (targetFrameRate / frameRate) at a given targetFrameRate and all subsequent rates for different real frame rates to be much closer to the original function as well, allowing you to use the same K value used while utilizing t = K * (targetFrameRate / frameRate) (Note: There is nothing wrong with the equations in the video, they just give small lerp values that you might be required to adjust later since you can't use a K value greater than 1 in the new equation). The constant A only needs to be calculated once upon creation of the object that uses A (assuming K is indeed a constant). In summary, this provides a way for t values from the new equation to be close to the old equation using the same k values. I hope this helps anyone looking to implement this function in an already largely completed version of their project! And here is a Desmos graph I set up to help understand why this might be useful: www.desmos.com/calculator/sylkom3bze Try getting rid of A on the purple line and f on the blue line. That illustrates the exact way the original equations were portrayed in the video.
@simondev758
@simondev758 Жыл бұрын
Awesome, yeah that was one problem with the new equation, is that it doesn't map easily to the old values without some work. And I didn't do the work heh
@RDD87z
@RDD87z 5 ай бұрын
super helpful! thank you so much.
@Peterscraps
@Peterscraps Жыл бұрын
Every time I go to write I a comment you're ahead of me explaining what I know from intuition, but way better than I could. Then adding to that something I don't know. brb gonna bing your videos.
@simondev758
@simondev758 Жыл бұрын
Hah, happy you're getting value from them!
@tuomaskoivistoinen6476
@tuomaskoivistoinen6476 Жыл бұрын
Crazy good videos thank you!
@realMenta
@realMenta Жыл бұрын
Great video, thank you!
@spaaaaace8952
@spaaaaace8952 20 күн бұрын
I wish I had this channel when I was younger.
@danielvindhjarta2851
@danielvindhjarta2851 Жыл бұрын
This video earned you a subscription. Very nice work.
@simondev758
@simondev758 Жыл бұрын
Happy to have you around!
@EgorChebotarev
@EgorChebotarev Жыл бұрын
One of the best explanations
@simondev758
@simondev758 Жыл бұрын
ty!
@MIKELENZTIPS
@MIKELENZTIPS Жыл бұрын
Fantastic video - thank you
@MrChernicharo
@MrChernicharo Жыл бұрын
Wow! That was beautiful 🤩 I need to learn math today
@SupaKoopaTroopa64
@SupaKoopaTroopa64 Жыл бұрын
I didn't know about the slerp function until now, and it is SUPER helpful! I'm a 3d artist, and I often face the problem of having to interpolate between two normal maps. When searching how to do this, there are tones of unhelpful answers. some say to just interpolate between the raw pixel values (which never looks right). Others say to use an overlay blend operation, which does an ok approximation. I have never once heard someone mention slerp! One great property is that you can rotate one normal map by the other by using t=2, or t=-1 to rotate it in the opposite direction.
@simondev758
@simondev758 Жыл бұрын
If you're trying to blend normal map, check this site out: blog.selfshadow.com/publications/blending-in-detail/
@SupaKoopaTroopa64
@SupaKoopaTroopa64 Жыл бұрын
@@simondev758 I've actually read that blog before. It was very useful, but the slerp function adds some more flexibility. For example, I often need to mix 3 normal maps when working with clothes (seams/pockets, fabric wrinkles, and procedural noise). I can divide their angles by 3 using slerp(normal_map, surface_normal, 1/3), and then add them together with two instances of slerp t=2.
@noahwhewall5651
@noahwhewall5651 Жыл бұрын
lost me at the end lol but very good video on some game maths fundementals. Nice refresher after not having dabbled in stuff like shaders in a while
@magnusm4
@magnusm4 Жыл бұрын
What I like about lerp is how it can be cheated to be smooth, like you showed. But also in shaders how it can be used for shapes and patterns. Where T is a value of 0 to 1, meaning black to white with grey in between. So by feeding it a black and white pattern "aka any colored image but only one of the 3 colors" then you can use lerp to paint effects onto a surface. Say you have a texture with spots you want lit up. You just use the non lit part into the A, the lit part into the B. And the black and white part into T. So now it lights up the white parts of the texture while smoothing out in the greys.
@omnigeddon
@omnigeddon Жыл бұрын
thanks for these videos.. these are pretty dope :D
@hanshangyan1512
@hanshangyan1512 Жыл бұрын
Teacher Simon. Thank you for the great tutorial. God bless you. Can I request a video on "How will I learn to code if I could start over"
@SVGc1993
@SVGc1993 Жыл бұрын
Oh my god, learning the right way to lerp positions independently of framerate IS a must and I never thought of it... Totally required for online games where position matters.
@5hirtandtieler
@5hirtandtieler Жыл бұрын
1:13 Using this in conjunction with ‘B*t + A*(1-t)’ was an idea I never heard before and will be SO MUCH more useful than having to go into desmos to hand craft functions whenever I need interpolation, so thank you for all this! I know this was probably the simplest concept for others, but I work in a sim tool that doesn’t offer interpolation functions and I only really need them when making nice animations. But this is so much cleaner than reimplementing complex functions...
@praayos
@praayos Жыл бұрын
Thanks especially for the last part. I am the person who always used deltaT. I will do better now. ;)
@FlareGunDebate
@FlareGunDebate Жыл бұрын
very nice. thank you.
@addictedyounoob3164
@addictedyounoob3164 Жыл бұрын
You da best, Simon!
@while.coyote
@while.coyote Жыл бұрын
I love this, thanks
@felleg4737
@felleg4737 Жыл бұрын
very very cool! thank you!
@williamdrum9899
@williamdrum9899 10 ай бұрын
2:18 From what I understand this can be achieved using integer math as well. I've heard you can do something similar on 8 bit platforms using the following: char speed = 0; unsigned char accel = 0; void gametick(){ accel++; if (accel) { if (speed > 0 && speed < 0x7f) { speed++; } } Essentially accel acts as a timer that increments speed whenever accel overflows. If you wanted to achieve an effect like x^3 or sqrt(x) you could AND accel with a bitmask that grows or shrinks based on the value of speed.
@duelsoldier3048
@duelsoldier3048 Жыл бұрын
Very good video, keep it up
@Tobiky
@Tobiky Жыл бұрын
This is really cool
@simtrip6452
@simtrip6452 6 ай бұрын
I'm not sure if what happened at 7:47 was a genuine audio screwup or you faked out censoring the word "infuriating" but I love it
@simondev758
@simondev758 6 ай бұрын
Oh weird, yeah that's totally something going wacky with the audio heh
@HomeofLawboy
@HomeofLawboy Жыл бұрын
I'm currently working on a game that has some events that sometimes causes a spike in the frame time, if I happened to be moving the camera in a specific way during those events the camera starts to freak out shaking all over the place. I ironed out some time consuming events to minimize the problemas but never understood why the camera of all things was suffering from the fps drops... until now
@DonutSurprise
@DonutSurprise Жыл бұрын
Watched this a second time, realized already had given a thumbs up.
@Chukxztv
@Chukxztv Жыл бұрын
Love IT, thank u
@NathanHedglin
@NathanHedglin Жыл бұрын
Great video
@MegaCevapcic
@MegaCevapcic Жыл бұрын
Sorry... shouldn't it be b^m * b^n = b^(m+n). Is it different if the numbers are strictly between 1 and 0?
@Rundik
@Rundik Жыл бұрын
I wanted to write the same thing. I think this is a typo
@simondev758
@simondev758 Жыл бұрын
Dammit
@simondev758
@simondev758 Жыл бұрын
Even worse, this was correct in my draft, haha
@MegaCevapcic
@MegaCevapcic Жыл бұрын
@@simondev758 it's the consequence of doing too much math haha I just made a matrix multiplication function in JS last week where I added instead of multiplied the elements, so it'll be the first thing I look for a while 😂
@bernhagen93
@bernhagen93 7 ай бұрын
this video is great thanks
@rafaelbrustolin4687
@rafaelbrustolin4687 2 ай бұрын
useful stuff i found here
@cameleon5724
@cameleon5724 Жыл бұрын
One content, two languages. What I have now written may have a perfect mirror in another language.!!!!!!!!!!! Hack in the brainlll
@pist5343
@pist5343 Жыл бұрын
Awesome!!
@m96k3y7
@m96k3y7 7 ай бұрын
Sadly... I slept at math, so thank you! 😂
@boywithacoin
@boywithacoin Жыл бұрын
I like your examples of UI animation. This animation you've done are not simulative, right? The animations you've shown doesn't take velocity or other physical properties in consideration, right? Is it possible for you to do a video on spring-based system and normal curves? Great video!
@diegoduarte187
@diegoduarte187 Жыл бұрын
amazing video, you should leave a little more time at the end of the video, so the recommended videos appear there. Currently the explanation of method #3 get interrupted for being at the end of the video
@simondev758
@simondev758 Жыл бұрын
Ooh good point
@CosyStudios
@CosyStudios Жыл бұрын
Serious tidbits my man
@4.0.4
@4.0.4 Жыл бұрын
I had no idea about the naive position lerp being framerate-dependent. The more you know!
@kyberite
@kyberite Жыл бұрын
Thank you for this!
@ChrisD__
@ChrisD__ Жыл бұрын
That last pitfall has filled me with terror.
@Desopolis
@Desopolis Жыл бұрын
Post this on your twitter! KZfaq’s algo highly values the first few hours!
@ferinzz
@ferinzz 3 ай бұрын
Huh, algo seems fine for me.
@G8tr1522
@G8tr1522 Жыл бұрын
I only subbed bc of that cheeky little gag you did.
@G8tr1522
@G8tr1522 Жыл бұрын
but forreal, this is very useful if I eventually finish my ideas for music production plugins.
@simondev758
@simondev758 Жыл бұрын
😀
@soyboy3274
@soyboy3274 Жыл бұрын
Very nice
@leeoiou7295
@leeoiou7295 Жыл бұрын
lerping is the most underrated field in math
@TinyDeskEngineer
@TinyDeskEngineer Жыл бұрын
I always wondered how texture filtering worked, yet never considered lerp.
@eky
@eky Жыл бұрын
How do you generate the voice on these videos? It sound super real 👍
@Skyite
@Skyite 14 күн бұрын
Look at this remind me abt bezier curves is just lines lerping together
@UrbanLetsPlay
@UrbanLetsPlay Жыл бұрын
this video should have been in 60fps
@isbestlizard
@isbestlizard Жыл бұрын
omg definitely use quaternions to interpolate between two random rotations ;D
@you_re
@you_re Жыл бұрын
instant subscribe!
@givrally7634
@givrally7634 Жыл бұрын
2:43 "A parabola..." *shows a bell curve*
@SteinGauslaaStrindhaug
@SteinGauslaaStrindhaug Жыл бұрын
As a web frontend programmer for an online store, I rarely get to very fancy animations... I rarely end up using anything except a linear interpolation and very rarely ease in out. But if I did use anything more fancy it would be annoying as heck to use. Because in a tool such as a webshop any animation must finish in under a second, usually between 200 ms and 400 ms not to feel frustratingly sluggish. Only when doing large distance animations such as dialogs animating onto or off the screen I get to use up to 1.2 seconds long animations; but usually half of it is basically transparent anyway.
@pineapplerindm
@pineapplerindm Жыл бұрын
i never specify the ease function to use CSS's built-in ease - transition: 0.2s; animation: animation-name 0.2s;
@schobihh2703
@schobihh2703 Жыл бұрын
I wonder if the log function for zoom in zoom out should not be a sqrt function for natural view, because then your velocity with which you distance in or out is constant, as the area you cover increases with the sqr of the distance.
@simondev758
@simondev758 Жыл бұрын
Might be interesting to try
@alvarobyrne
@alvarobyrne Жыл бұрын
note to self: slerp = spherical linear interpolation
@odinmagick
@odinmagick Жыл бұрын
Is there a course that teaches you the various ways to apply this? I’ve been having very limited success in experimenting by myself and I think I need, like, a legit teacher to help me step by step
@simondev758
@simondev758 Жыл бұрын
Yeah, I have a shader course that uses lerp (mix in glsl) extensively.
@givrally7634
@givrally7634 Жыл бұрын
After plotting a few of the smoothstep family of functions, it seems like it gets steeper and steeper in the middle. Does it converge towards the discontinuous step function, or towards a "smoothest" step function ? My intuition would be the former, since the nth derivative of S_n is made to be zero at x=0 and x=1 on purpose, the taylor series should be 0 + O(x^n) and 1 + O(x^n) respectively, and thus should converge to 0 and 1, with a discontinuity in the middle. Maybe the function isn't analytical, but all smoothstep functions are polynomials and therefore analytical, so I don't think that's possible...
@bdenix1997
@bdenix1997 Жыл бұрын
on the 3rd method, frame independent lerp thing, its ilke K = 1 - pow ( K , frameTime) we're using the variable K when declaring it is odd. shouldn't it be pow(constant , frameTime) ?
@simondev758
@simondev758 Жыл бұрын
Oops, yeah, it's more like K = some_constant K = 1 - pow(K, frametime) etc..
The Beauty of Bézier Curves
24:26
Freya Holmér
Рет қаралды 1,9 МЛН
ШЕЛБИЛАР | bayGUYS
24:45
bayGUYS
Рет қаралды 655 М.
одни дома // EVA mash @TweetvilleCartoon
01:00
EVA mash
Рет қаралды 6 МЛН
Osman Kalyoncu Sonu Üzücü Saddest Videos Dream Engine 118 #shorts
00:30
The ONE Texture Every Game NEEDS
9:00
SimonDev
Рет қаралды 246 М.
what's a derivative?
7:55
skeary
Рет қаралды 27 М.
Linear Interpolation and Animations
12:04
Keith Jerosky Maths
Рет қаралды 1,3 М.
How Big Budget AAA Games Render Bloom
13:23
SimonDev
Рет қаралды 104 М.
Dear Game Developers, Stop Messing This Up!
22:19
Jonas Tyroller
Рет қаралды 671 М.
How do Major Video Games Render Grass?
9:33
SimonDev
Рет қаралды 338 М.
Spatial Hash Grids & Tales from Game Development
19:08
SimonDev
Рет қаралды 110 М.
Smoothstep: The most useful function
23:56
The Art of Code
Рет қаралды 60 М.
Carregando telefone com carregador cortado
1:01
Andcarli
Рет қаралды 1,1 МЛН
Вы поможете украсть ваш iPhone
0:56
Romancev768
Рет қаралды 633 М.
Чехол для iPhone на все случаи жизни
0:35
Распаковка айфона в воде😱 #shorts
0:25
Mevaza
Рет қаралды 1,6 МЛН