It Takes Two, lava lamps, Raymarching in Godot 4.1.

  Рет қаралды 51,324

Martin Donald

Martin Donald

Күн бұрын

In this video I spot a lava lamp in It Takes Two and try to recreate it in Godot 4.1 using raymarching. Which turns out to be a bit overkill.
Chapters:
0:00 Introduction
0:31 SDFs
1:21 What is a Ray?
1:41 Raymarching explanation
2:25 Implementing raymarching in Godot
5:32 Adding surface normal
6:10 Adding more spheres and animation
7:34 Booleans
8:30 Smooth booleans
9:20 Fixing issues
10:56 Adding colour
11:41 Blending between different shapes
12:06 Finished result
References:
iquilezles.org/articles/distf...
• Coding Adventure: Ray ...
docs.godotengine.org/en/stabl...
Me:
Patreon / bolddunkley
Twitter / bolddunkley
itch.io bolddunkley.itch.io/
Software used for this video:
(Content)
Godot 3.1 godotengine.org/
OBS obsproject.com/
Kdenlive kdenlive.org/en/

Пікірлер: 120
@comradestinger
@comradestinger Жыл бұрын
Haha, I'm the Technical Artist who implemented this effect in It Takes Two. You hit it pretty much spot-on with how I did it! It's actually a little bit spooky how similar your code is to the code in the game xD Absolutely fantastic video on the topic, easy to understand and follow without skipping much on the details. The "cube" transition was originally not intended to be used. Just me playing around with the effect, but I left the blend parameter exposed and one of the designers hooked it up to activate when you press the button. Some minor differences in the shader that might be interesting: 1. My raymarch shader uses the same mesh as the lava lamp instead of a big box. (saves on overdraw) 2. The raymarch starts at the surface of the object. (saves on march steps.) 3. I did not think to use a cone SDF to clip the spheres, you can totally see mine awkwardly clipping the edges from this sometimes. x) 4. To get lighting on the spheres, it's actually a standard "lit" material, and it returns the SDF's normal, base color, emissive, etc to be lit by the engine. Neat trick too make your SDFs look more real if you have lighting already.
@MartinDonald
@MartinDonald Жыл бұрын
Oh awesome, it's so cool that this actually reached you. Love your work and thank you so much for the insights
@Algardraug
@Algardraug Жыл бұрын
Holy crap, great work with the game!
@dzxtricks
@dzxtricks Жыл бұрын
Wow... That's a lot of work for something that a lot of players might have missed... But it was beautiful addition when I was playing, I really like the lava lamps and many other weird quirky details in the game world. I was like "WOW it can change shapes damn"
@robert_just_a_byte
@robert_just_a_byte Жыл бұрын
If you have the time and patience to answer my question, please, why would this approach be better than just simulating/animating and caching? Thank you. @MartinDonald learned some tricks from your clip regarding color & clipping.
@michaelhyman3d
@michaelhyman3d Жыл бұрын
@@robert_just_a_byte It saves memory and is dynamically adjustable in realtime. Cached vextex animations are typically large inflexible files.
@tiagosr
@tiagosr Жыл бұрын
Nice stuff! Another thing that can help with performance is to use the surface of the lamp glass (or a proxy surface with the same shape) as the surface to apply the SDF shader to, instead of an "SDF World" overlay - it will reduce the amount of rays to only the pixels that the surface covers. And you can also start the marches from the surface (or slightly behind them) instead of doing that from the camera :)
@tiagosr
@tiagosr Жыл бұрын
Another thing that could be added to the shader, as it is rendering a "solid" object (as much as the wax in a lava lamp can be called solid 😅), the SDF calculation should be able to write to the depth buffer via the DEPTH output, and you can then combine it with the world without needing it to be in the transparent pass. The depth lookup is still helpful for culling out queries ahead of time - if the ray start is already past the depth at that fragment, just drop the fragment at that point.
@MartinDonald
@MartinDonald Жыл бұрын
@@tiagosr you're a genius! I'll update my implementation with exactly these fixes before I publish the project files, thanks! 🙏
@MartinDonald
@MartinDonald Жыл бұрын
I want to pin this as well but I can only have one comment pinned and I'm afraid the OG author of the lamp absolutely wins first place (soz Tiago). So I'm leaving another comment of appreciation in the hope that the algorithm figures out that this comment needs to also stay near the top 🙏
@tiagosr
@tiagosr Жыл бұрын
@@MartinDonald Hahah all good! 😄Cheers on having it reach the original TA there!
@cookieBadger
@cookieBadger 6 ай бұрын
@@MartinDonald here's another comment to illustrate to the algorithm that this is important for non-participators of this conversation :)
@gamurarandrei2657
@gamurarandrei2657 Жыл бұрын
wait a sec. Did you just post after 3 years? NICE
@PuffoPufferfish
@PuffoPufferfish Жыл бұрын
YOOOOOOO its like 5am but still great to see an upload c:
@pixstatic200
@pixstatic200 Жыл бұрын
From the clips in your video I'm not sure the lava lamp in It Takes Two is anywhere near as sophisticated as this one. I always love seeing creative applications of ray marching, though. Nice job
@ELEMENTLHERO
@ELEMENTLHERO Жыл бұрын
The legend returns!
@FathomRaven
@FathomRaven Жыл бұрын
Was literally just looking at your channel and hoping you'd be back soon, and here you are!
@hterrorarchive2393
@hterrorarchive2393 Жыл бұрын
I’ve missed your videos!!
@sinus4784
@sinus4784 Жыл бұрын
You're back!! I hope you make some more, I absolutely love your videos!
@BramwellWilliams
@BramwellWilliams Жыл бұрын
The king has returned! 🥳 fantastic as always ^^
@nicks4727
@nicks4727 Жыл бұрын
He's back!! I'm happy your back making videos!
@polygonalcube
@polygonalcube Жыл бұрын
Glad to have you back. Your videos are very inspirational for aspiring technical artists!
@indiemini
@indiemini Жыл бұрын
some of the best technical art information in the world. thank u!!
@MrSefsdf
@MrSefsdf 5 ай бұрын
One of the most effective explanations of ray marching I've come across on YT.
@GIRGHGH
@GIRGHGH Жыл бұрын
Watching raymarching always makes my brain happy
@tezza48
@tezza48 Жыл бұрын
Signed Distance Fields can be generated from signed distance functions, so they are interchangable anyway.
@bread8176
@bread8176 4 ай бұрын
Exactly... a signed distance function maps a point in space to a distance value, and a signed distance field maps a point in space to a distance value. I was a bit baffled when they came up as different things
@OldRaspy
@OldRaspy Жыл бұрын
dude thank u so much! i was recently trying sdf-s but i wasn't able to get them to work properly because i was following unity tutorials.
@nemene8585
@nemene8585 Жыл бұрын
These videos are insanely entertaining and educational, i hope you continue making them :D
@AnttiVesanen
@AnttiVesanen Жыл бұрын
Good to see you again, I loved your snow video!
@frankerzed973
@frankerzed973 Жыл бұрын
Love your videos! Glad to see you back ;)
@tatapnhob
@tatapnhob Жыл бұрын
wow, i just browsed this channel yesterday and thought if it's going to be active again any time soon... turned out to be more soon that i'd imagined great video! i think the final result is even better than in it takes two
@Algardraug
@Algardraug Жыл бұрын
Incredible making the whole lava from a shader, well done! Took a peek at your channel and your other videos are from 2 years ago. Hoping for some more videos like this in the nearish future, great work!
@dotvhs
@dotvhs Жыл бұрын
Seeing a video from you in my subscriptions made my day. It's a great one as usual, thank you!
@JackTheFoxOtter
@JackTheFoxOtter Жыл бұрын
This looks really good! I will have to play with raymarching shaders myself when I find the time for it. Thanks for making this!
@sanyi9667
@sanyi9667 Жыл бұрын
so good to have you back!
@S-I-T
@S-I-T Жыл бұрын
Splendid video Martin. Thank you.
@stealcase
@stealcase Жыл бұрын
This (as well as your other videos) are incredibly valuable and high quality in content and production value. I'm shocked that you're not bigger on youtube, but maybe this is a very niche domain. I want you to keep making stuff and be sustainable, so putting my money where my mouth is and subscribing to your patreon later today.
@psycl0n3
@psycl0n3 11 ай бұрын
insane level of quality on this one - subscribing and love the content
@yvanvan3729
@yvanvan3729 Жыл бұрын
A very great tutorial, very well explained. Thanks for doing it !
@BlazertronGames
@BlazertronGames Жыл бұрын
Hope you make more videos! These are amazing.
@AgnisNeZvers
@AgnisNeZvers Жыл бұрын
I'm really happy to see new video from you! Master of knowledge dropping. My first solution idea was using 3D meshes + depth buffer.
@lewisnorth1188
@lewisnorth1188 Жыл бұрын
new martin donald video is the biggest event in the past year
@laneknauff2500
@laneknauff2500 Жыл бұрын
Love your videos! Im ALWAYS hype when you drop a banger of a video (which is everytime!) :)
@conradrobinson7941
@conradrobinson7941 Жыл бұрын
YES YOURE BACK AAAA
@arctodus1
@arctodus1 11 ай бұрын
It's been a while. Great to see
@realpattywhack
@realpattywhack Жыл бұрын
THE LEGEND RETURNS (thank you for your snow video btw, I'm using the approach you described for a game I'm working on atm)
@TechArtAlex
@TechArtAlex Жыл бұрын
Glad you're back!
@mikkelens
@mikkelens 11 ай бұрын
I missed this video on release because it had been such a while since your last upload, but wow I really hope we see more videos because I've missed these a lot.
@andreas.ranman
@andreas.ranman Жыл бұрын
Nice breakdown! Can confirm it was raymarching, sent it to collegue who made it
@sapah8945
@sapah8945 Жыл бұрын
oh im glad youre uploading again!!
@BrutalStrike2
@BrutalStrike2 Жыл бұрын
Dude you back🎉
@amyshaw893
@amyshaw893 11 ай бұрын
I did some work on raymarching at uni, and Inigo Quilez really was a godsend. Love that guy so much. He even demonstrated how to make it all work in 4 dimensions, which formed the backbone of the my work. I also added some stuff from soem videos codeparade has done on the subject, and added in things like glowing edges and (almost) phong shading. 10/10 rendering method
@Seventyy
@Seventyy Жыл бұрын
Yoooo, you are back! And you are using my favourite engine!
@XtremeZero
@XtremeZero Жыл бұрын
It's been forever, welcome back champ
@Asdayasman
@Asdayasman Жыл бұрын
It's definitely good enough for a prop, and a great excuse to talk about ray marching, but I honestly think this is a hammer creating nails situation. You're great at shaders, and ray marching is fun, so anything that can be, must be. ... But a physical simulation would do this so much better. In real life, lava lamp wax blobs don't anticipate meeting another blob and smoothly deform into them, they collide, _then_ merge, then surface tension drags them together based on their inertia, and when equalised, the momentum is shed by rippling oscillations of the new sphere. When a blob splits, it looks a bit smooth-SDFey until it gets far enough apart from itself, then the connecting strand breaks in interesting ways dictated by surface tension. If the strand is long enough, surface tension can't keep the two halves of it together enough to incorporate it entirely into the two new blobs, and you get a couple little bloblets in the middle. Again, the momentum of the strand shooping back into the parent blob causes oscillations. It goes without saying that there also aren't a defined number of blobs in a lava lamp.
@n41sd
@n41sd Жыл бұрын
oh! Nice news you are back! 😀
@hardtofinduniquename
@hardtofinduniquename 11 ай бұрын
Thrilled to see you're making videos again! Or maybe I need to adjust my expectations for how long it takes to put these together while having a life...
@cristinocanga
@cristinocanga Жыл бұрын
Man, i thought you wouldn't upload again, i've searched everywhere else to see if you had some new content, twitter, linkedin, facebook, etc It's good to see you back. If you could make a video talking about this career and some resources that we can use it would be awesome! Congrats
@mathkrGames
@mathkrGames Жыл бұрын
yay, you're back! :)
@cookieBadger
@cookieBadger 6 ай бұрын
I'm not entirely sure why I ran into that issue because I never saw it happen in the video, but in case anybody else is struggling to get the depth test to work: The calculated distance d depends entirely on the position of the camera, and is unaffected by its rotation. This is however not the case for the depth buffer. When the camera turns, the depth of some objects that are now to the edge of the view has decreased. Now, when comparing the distance of a pixel from the raymarching that is far off to the corners of the camera, it might be greater than the depth of an object closely behind, so it doesn't show. This can be fixed by calculating the depth of the raymarched pixel with this line: float z = (PROJECTION_MATRIX * VIEW_MATRIX * vec4(ro + d*rd, 1.0)).z; Now take ALPHA = step(z, min(MAX_DIST, linear_depth)) and your problem should be solved! I was trying to get the project files to verify if this error happens in the original project as well, but they weren't available yet on Pateron. :(
@sigitsatriap6505
@sigitsatriap6505 9 ай бұрын
I know i would love your videos, subscribed
@mathiasdev8523
@mathiasdev8523 Жыл бұрын
You're back ❤
@colinbrown7947
@colinbrown7947 Жыл бұрын
Really great video! It would be really nice to see more descriptive variable names though! Having so many single or 2 character variables makes the code very hard to understand at a glance, which when going through the code quickly like you do for a video makes it easy to get lost in the explanation. Also, glad you're back!
@Styrac
@Styrac Жыл бұрын
Return of the King 🙌🙌🙏
@HRZN-xj9um
@HRZN-xj9um Жыл бұрын
Welcome back
@Magnogen
@Magnogen Жыл бұрын
Loved watching this video! Fragment shader coding is a fantastic hobby of mine. Another way to render an SDF is to use Marching Cubes. Could definitely be something you might like, as you can reduce the quality and still get a good result, rather than a low Res version with Ray Marching. You might like having a look at that, given your background in vertex shaders!
@nightfr09
@nightfr09 Жыл бұрын
Man I was expecting you to say '' ripping the games code'' at :41 lmao nice code i've been kinda miffed at some of the lava lamps I've seen in other games (take like Stray for example, they appear frequently but just use a moving gif / texture atlas for the effect) Or in other games where they use a particle engine. This looks cleaner and I like the effect better. Thanks for the code :)))))
@bean_mhm
@bean_mhm Жыл бұрын
Awesome video
@BeauSeymour
@BeauSeymour Жыл бұрын
The king is back! I'd never normally ask another KZfaqr to post more often given how much effort it is, but 2 years is 2 long ^^
@wooliii
@wooliii 11 ай бұрын
great video ! you did a really good job breaking down the steps, as well as expanding on the methodology that is often documented for fx like this. The only critique is variable naming. In the shader-programming/shadertoy world, there's this weird code-golf-like tendency to have very very short variable names to describe things. This is fine when you're making demo scenes that need to fit into very small files, but for tutorials/education and documentation it would be very helpful to use actual names for variables instead of abbreviations. For example, defining `ray_origin` and `ray_distance` instead of `ro` and `rd` immediately provides necessary context when reviewing the source code. Keep up the good work, I'm really loving the videos you're making and the topics you're covering !
@magnuspedersen5751
@magnuspedersen5751 4 ай бұрын
This is super cool
@YoguiTheYoshi
@YoguiTheYoshi Жыл бұрын
Fantastic 💙
@wheat7258
@wheat7258 Жыл бұрын
He returns!
@tozzo6481
@tozzo6481 Жыл бұрын
NEW VIDEO LESGO
@cookieBadger
@cookieBadger 6 ай бұрын
thanks for this video, it really saved my a*s for a prototype assignment :)
@OshidaBCF
@OshidaBCF Жыл бұрын
oh yeeeeeeeee
@OLIV3R_YT
@OLIV3R_YT 11 ай бұрын
Awesome!
@JustDezz
@JustDezz Жыл бұрын
Cool video! I hope, next one won't take another two years 😳
@jeyko666
@jeyko666 Жыл бұрын
nice, just did water shader using this. Will use it for parallax occluded grass in a pixel art style 3d game!
@CharlesVanNoland
@CharlesVanNoland Жыл бұрын
The lava is likely just some signed distance function blobs moving up/down, so that you get a metaballs effect, and they're just raymarching that.
@halimghani
@halimghani 11 ай бұрын
Hope you a healthy, wealthy, happy life
@araghon007
@araghon007 Жыл бұрын
I was looking for a way to use rasterized depth with raymarching for a while back when I was working on my own thing, but it turns out there's an implementation in Godot's documentation of all places?
@betalars
@betalars Жыл бұрын
Wow I've just made a lava lamp myself. ^^ But it's actually based on metaballs, so i think it costs a bit less performance. It obviously does not hold up as good as yours up close, but it does not have to. ^^
@dortuff
@dortuff Жыл бұрын
awsome
@blacklistnr1
@blacklistnr1 Жыл бұрын
The smooth minimum is pretty easy to understand: The normal one goes AAAABBBB due to the 'if' switching abruptly between the two. To make it smooth, you detect the corner (A and B closer than K) then you go AASSSBB, where S is how you want your corner to look like from A+k=B to A=k+B If I remember correctly, the one in the video was a parabola, but you can pick a sin or whatever other funky transition you want.
@roydash5657
@roydash5657 11 ай бұрын
Unreal engine 5 & Godot 4 really amazing Engine's.
@DogeisCut
@DogeisCut 6 ай бұрын
Im trying to implement raymarching as the main thing in my game using Godot, and im running into issues when using Mod to try to loop space, and also, objects appear bugged in various ways when applying other transformations on them
@NycroLP
@NycroLP 11 ай бұрын
Im really glad you are back. I really mean it. Having said that, i know its unrelated but i wasnt given any help and im really desperate. I have an offtopic question regarding VAT: Im using a character mesh which is uses an armature. This will lead to complications once there is bovemovent/rotations . Is there a way to ignore the bone movement while baking the VAT?
@TiagoTiagoT
@TiagoTiagoT Жыл бұрын
Isn't the function and the field just two sides of the same thing, the function returns the value at a given coordinate in the field?
@MartinDonald
@MartinDonald Жыл бұрын
More or less yes, the difference is when I hear "field" I assume some kind of precalculated result stored in a texture or something like that which is being looked-up, and when I hear "function" I think of an equation that returns the distance to a primitive shape.
@OfflineOffie
@OfflineOffie Жыл бұрын
To improve performance, instead of using separate spheres and roundboxes, use just the roundboxes and change the roundness parameter until they become a sphere! This way you avoid marching and having to union 4 extra shapes that might never even be used!
@asyncasync
@asyncasync 10 ай бұрын
How in the does this SDF work? If it has to loop over every object in the scene and check the distance to each based in the distance to the center of each and its rotation and what shape it itself is then this is no more efficient than normal collision detection. Maybe efficiency is not the point, but accuracy?
@Nikolajnen
@Nikolajnen 7 ай бұрын
Your version actually looks way better in my opinion
@jehree9850
@jehree9850 5 ай бұрын
Great video.. but man, people who use 1 or 2 digit variable names are a different kind of chaotic haha
@user-kz4pf2uz1n
@user-kz4pf2uz1n 7 ай бұрын
The Art of Code
@philippk7554
@philippk7554 Жыл бұрын
Hey, I would love to play with this code. Is there any chance of you publishing your work?
@seanmeyer6436
@seanmeyer6436 2 ай бұрын
I'm new to godot and maybe I missed something but I cannot figure out how the GRADIENT portion works at the end of the video. Is this a separate node I need to create myself and somehow plug into this shader? Thank you for the video, it was fun to follow along
@MartinDonald
@MartinDonald 2 ай бұрын
Thanks for watching! I'm just using the procedural gradient texture that Godot ships with. You can create one by clicking on an empty texture slot and selecting "New GradientTexture1D".
@angryzor
@angryzor Жыл бұрын
Isn’t a signed distance field basically the same as a signed distance function, just in 2D and baked into a texture?
@jcm2606
@jcm2606 Жыл бұрын
Yes, though signed distance fields can also be 3D, too.
@michaelhyman3d
@michaelhyman3d Жыл бұрын
I find it funny your mentioned the difference between sdfs and sdfs at the start if you would have released this video 2 years ago if would have saved an argument or two for me haha. Im not a low level guy in any way but could you tell me what this was written with? Its prolly a fairly fast language if your sending out all those rays.
@shadamethyst1258
@shadamethyst1258 Жыл бұрын
I'm confused as to your statement that signed distance fields are different from signed distance functions. Your function is in `R^n -> R`, which is no different from a n-dimensional scalar field. Is there a semantical difference I'm missing there?
@MartinDonald
@MartinDonald Жыл бұрын
You're absolutely right. The difference for me is that when I hear "field" I assume some kind of precalculated result, usually stored in a texture, which is being looked-up, and when I hear "function" I think of an equation that returns the distance to a primitive shape. This use may be gamedev or even studio specific.
@luigidabro
@luigidabro Жыл бұрын
Fun Fact: Lava Lamps actually give true randomness, because it is unknown, how and when the Bubbles will appear
@Antagon666
@Antagon666 11 ай бұрын
Fellow mate which also uses single letter variable names 🤣
@imaginingPhysics
@imaginingPhysics Жыл бұрын
If the ray marches back in time as it marches in space (finite speed of light you know) one gets a relativistic raymarcher: kzfaq.info/get/bejne/f95hi8-pq5yaip8.html
@MartinDonald
@MartinDonald Жыл бұрын
This is so cool!
@RooterDelWifiXs
@RooterDelWifiXs 5 ай бұрын
Sir, a function over a space is a field, is the same thing
@MartinDonald
@MartinDonald 5 ай бұрын
You're not wrong! But if you were saying "function" to refer to a texture sample I'd be confused.
@lemonjumpsofficial
@lemonjumpsofficial 6 ай бұрын
well an sdf is and sdf that was saved into an array lol
@arseniykucherenko4960
@arseniykucherenko4960 9 ай бұрын
It would be fantastic if you could create a video tutorial on how to craft game physics akin to the ones in this Mercury game (kzfaq.info/get/bejne/nqydaMyotK2unJs.html) using Godot 4.x. 🎮 The physics depicted have a whimsical similarity to the flow of a lava lamp, yet with a heightened level of sophistication. 🌋 Your expertise showcased through a tutorial could be immensely valuable and enlightening. Thank you! 🙏
@zxcaaq
@zxcaaq Жыл бұрын
I've missed you bby!
@asterixus
@asterixus Ай бұрын
Hi Martin, I really love your videos and they're so insightful ❤️! I'm a beginner tech artist at the very start of my journey and I don't think I've heard about raymarching until now 😅 I guess my question would be: how do you even begin to look for a solution to something like this, if you wouldn't have known about the concept? And if it's supposed to be common knowledge for a TA.. can you recommend any resources on sort of "here's what you should know about this topic" kind of way? (At least to mention the subjects, i guess it's easier to dig then if you know what you're looking for) Or how do you learn new stuff as a TA? It feels like there's so much out there it's confusing to know where to start 🥲
Animal Crossing, wobbly leaves, pivot caching.
8:06
Martin Donald
Рет қаралды 112 М.
I Made A Blob Shooting Game With Ray Marching
13:33
Visionary 3D
Рет қаралды 38 М.
ОСКАР vs БАДАБУМЧИК БОЙ!  УВЕЗЛИ на СКОРОЙ!
13:45
Бадабумчик
Рет қаралды 6 МЛН
마시멜로우로 체감되는 요즘 물가
00:20
진영민yeongmin
Рет қаралды 31 МЛН
Red❤️+Green💚=
00:38
ISSEI / いっせい
Рет қаралды 76 МЛН
Superpositions, Sudoku, the Wave Function Collapse algorithm.
14:28
Martin Donald
Рет қаралды 684 М.
Ray Marching, and making 3D Worlds with Math
6:28
SimonDev
Рет қаралды 242 М.
Improving Environment Graphics in Godot 4 - Tutorial
6:54
Wrobot
Рет қаралды 1,8 М.
choosing a game engine is easy, actually
15:08
samyam
Рет қаралды 351 М.
Coding Marching Squares
26:28
The Coding Train
Рет қаралды 177 М.
Vertex animation textures, beanbags and boneless animations.
9:58
Martin Donald
Рет қаралды 114 М.
Making a difficult game about fitting in - Acerola Jam 0
19:17
jess::codes
Рет қаралды 299 М.
Christmas special, making it snow.
11:15
Martin Donald
Рет қаралды 41 М.
Coding Adventure: Ray Marching
5:06
Sebastian Lague
Рет қаралды 1 МЛН
Giving Personality to Procedural Animations using Math
15:30
t3ssel8r
Рет қаралды 2,4 МЛН
ОСКАР vs БАДАБУМЧИК БОЙ!  УВЕЗЛИ на СКОРОЙ!
13:45
Бадабумчик
Рет қаралды 6 МЛН