Blender Tutorial: Photorealistic Puddles

Поділитися
Вставка
  • Опубліковано 24 лис 2024

КОМЕНТАРІ • 577

  • @MhLiMz
    @MhLiMz Рік тому +84

    It is so generous of you to put out tutorials for free every now and then, and you don't even include a lot of Poliigon advertisements.

    • @CZghost
      @CZghost Рік тому +5

      Not only that, Blender itself is actually free and open-source. It only makes sense to make tutorials for Blender free of charge.

    • @sicfxmusic
      @sicfxmusic Рік тому +12

      @@CZghost LMAO

    • @christianemden7637
      @christianemden7637 Рік тому +9

      @@CZghost that doesn’t diminish the time Andrew puts into those. So saying thank you doesn’t hurt anybody.

    • @btn237
      @btn237 Рік тому +12

      @@CZghost Blender is free to the end user, but the organisation requires enormous sums of money to operate. Just as an example.. the Blender development fund takes in around 167,000 euros per month. So I'd instead say - it makes sense to release Blender tutorials for free if it makes sense for that individual i.e they can afford to do it somehow.

    • @randomi1214
      @randomi1214 Місяць тому

      @@CZghostc

  • @mangoesfly1594
    @mangoesfly1594 Рік тому +14

    When I first learned of Blender back in January of last year, I was blown away. Your donut tutorial launched me into months of fun learning the software. Thanks for all you've done for us amateur artists!

  • @markflakezCG
    @markflakezCG Рік тому +105

    While some may prefer a simpler tutorial that only covers how to make the puddles I appreciate the depth and detail you included in this tutorial. You thoroughly explained every aspect and provided various ways to enhance realism. Overall, great job on the tutorial!

    • @rgbforever4561
      @rgbforever4561 Рік тому +2

      The thing is, this way you won't learn the process behind it.
      (That is crucial to learn blender)

    • @DumbArtStick
      @DumbArtStick Рік тому +2

      @@rgbforever4561 fr. No one teaches the theory behind it :(

    • @moonrivers71
      @moonrivers71 8 місяців тому +1

      @markflakez Yes, I agree. And I just came to this video from one of his where he does a tutorial on creating an interior in 9 minutes…and a lot of people get on his case for that not being detailed enough and an advert for Polligon. People get real. This guy is awesome.

  • @pZq_
    @pZq_ Рік тому +99

    Your way of explaining complicated things is superior. Thank you for doing this!

  • @globglob3d
    @globglob3d Рік тому +47

    If anyone is curious (taken from wikipedia):
    - Overlay combines Multiply and Screen blend modes. Where the base layer is light, the top layer becomes lighter; where the base layer is dark, the top becomes darker; where the base layer is mid grey, the top is unaffected.
    - Color Burn mode divides the inverted bottom layer by the top layer, and then inverts the result. This darkens the top layer increasing the contrast to reflect the color of the bottom layer. The darker the bottom layer, the more its color is used.

    • @gurratell7326
      @gurratell7326 Рік тому +6

      Both Overlay and Color Burn clamps stuff between 0 and 1 as well. Overlay do a soft clamp while Color Burn does a hard clamp. What Blender Guru wants to use in this instance is Linear Light since it does the same as Overlay except without the clamping.

    • @ChrisD__
      @ChrisD__ Рік тому +1

      Acerola has a few videos that go into how these work, including Bright/Contrast. They're very technical & math heavy, but they're incredibly helpful for writing shaders in Blender.

    • @Arcangel0723
      @Arcangel0723 Рік тому +1

      @@ChrisD__ came here to say this! Acerola is amazing

    • @esomos_org
      @esomos_org Рік тому +1

      have a good day sir.
      class Color {
      public:
      int r, g, b, a;
      enum { OVERLAY, LIGHTENED, DARKENED };
      Color& mix(const Color& input_color, int BlendMode) {
      switch (BlendMode) {
      case OVERLAY:
      r = (input_color.r < 128) ? (2 * r * input_color.r) / 255 : 255 - 2 * (255 - r) * (255 - input_color.r) / 255;
      g = (input_color.g < 128) ? (2 * g * input_color.g) / 255 : 255 - 2 * (255 - g) * (255 - input_color.g) / 255;
      b = (input_color.b < 128) ? (2 * b * input_color.b) / 255 : 255 - 2 * (255 - b) * (255 - input_color.b) / 255;
      break;
      case LIGHTENED:
      r = std::min(r + input_color.r, 255);
      g = std::min(g + input_color.g, 255);
      b = std::min(b + input_color.b, 255);
      break;
      case DARKENED:
      r = std::max(r - input_color.r, 0);
      g = std::max(g - input_color.g, 0);
      b = std::max(b - input_color.b, 0);
      break;
      default:
      break;
      }
      return *this;
      }
      };

  • @AsherIsbrucker
    @AsherIsbrucker Рік тому +12

    Perfect timing for this tutorial. I'm designing an album cover in 3D that includes a bunch of puddles on a street. The way I did it at first was to displace a plane with a noise texture as the street, then just intersect another flat plane with a water texture applied so that it "filled" the divets in the road plane. Needless to say this method is miles ahead, really stoked to use it. Thanks for the great explanation as usual!

  • @nico-s5k
    @nico-s5k Рік тому +33

    I started using Blender in the late 2020's, learned from the donut series. Today, 2 years later, I still learn a lot of things with this guy. Awesome tutorial Andrew!

    • @umb3rto641
      @umb3rto641 Рік тому +9

      we're not even in the mid of 2020s yet, just so you know hah

    • @mA-pg4wu
      @mA-pg4wu Рік тому +2

      @@umb3rto641 +1

    • @mesh8349
      @mesh8349 Рік тому

      @@umb3rto641 😂

  • @kus42
    @kus42 11 місяців тому +1

    Tutorials like this excel at demonstrating ways in which certain things can be achieved, and impart some of the thought processes and experience that went into the process; use them for guidance and inspiration, but there is simply no substitute for your own hands-on work and experimentation: Only through actual doing are you going to build your own skills.

  • @almicc
    @almicc Рік тому +1

    Putting in a little more effort to match reality goes a very long way, I would say that is probably the greatest lesson from this tutorial. Simple is fast and conveys the idea, but completely unmatched to a smarter set up that takes only a few more minutes to make.

  • @coffee-vz1nr
    @coffee-vz1nr Рік тому +32

    I just want to thank u for all the work u have done for this community. You are amazing and a great inspiration to anyone getting into blender.

  • @loverrlee
    @loverrlee Рік тому +438

    Wow how does someone even go about figuring all this out?? I’m brand new to Blender (did the donut!) but this is wild that people can think and figure out how to use all these nodes together to get something that looks realistic! Very impressive! I don’t know how you figured it all out, but it looks great! 😂

    • @bhavishyaparmar2651
      @bhavishyaparmar2651 Рік тому +92

      I had this same reaction a year ago😄........but its pretty simple just keep watching tuts like these and you'll eventually start understanding

    • @ali32bit42
      @ali32bit42 Рік тому +15

      Its pretty easy once you know shadee fundementals and how all the nodes work

    • @shivanshsoni4242
      @shivanshsoni4242 Рік тому +19

      I always afraid of geo nodes but when i found out they work like maths it gets easy to use. I tried experimenting different things on them and messed up so many time but now i know a good use of them.
      ✌️

    • @christendombaffler
      @christendombaffler Рік тому +8

      Time and passion. You have to want to learn these things and then apply them in your own way to your projects. I haven't progressed past the very early stages because I'm lacking on both fronts and still only treating it as a tentative hobby, but the few moments when I had both also doubled as the ones when I learned the most by far.

    • @baldpolnareff7224
      @baldpolnareff7224 Рік тому +5

      Math is key

  • @razeezar
    @razeezar Рік тому +82

    "Moisture is the essence of wetness, and wetness is the essence of beauty." - Derek Zoolander

  • @Fractal_CZ
    @Fractal_CZ Рік тому +7

    I'm working with 3D since 1993, professionally since 1999. Yet, I find your videos extremely useful, inspiring and educational. Subscribed and learning :)

  • @vianart3d
    @vianart3d Рік тому

    As a long-time Blender user, I gained a lot of enlightenment through this tutorial.
    So far I have only made puddles of water using simple methods, combining two types of materials, namely dry conditions and flooded conditions, using Noise Texture as Masking, but after seeing this tutorial, I got a new understanding.

  • @CodySherrill-r9r
    @CodySherrill-r9r Рік тому

    I love that you go into technical reasoning behind why our eye perceives things scientifically instead of saying "we need this dark area."

  • @HunterL850
    @HunterL850 Рік тому +1

    You sir have read my mind. I was observing wet roads earlier while catching public transport on a late rainy night. The amount of detail that you would have to simulate to replicate multiple cars flinging water at a high velocity is mind boggling.

  • @TheWeirdSide1
    @TheWeirdSide1 Рік тому

    After a month of headaces, insomnia, hair loss (from pulling out), n-gon nightmares(when I did sleep), eye fatigue, existental crisis, and a few trips to hell, I finally got a basic grasp of the Blender layout/tools/settings... Before that I found the Guru's videos to be cause of insanity as I tried to keep up with multi-layered tips and the overall education racing across a complex alien landscape. Some channels were worse, but some shorter videos proved effective to ease me into the new world of 3D. Now that I've crossed those first hurdles, this channel is incredibly useful for continued improvement and insight, and the style, humor, and overall character is a true treasure!

  • @nahiyanalamgir7056
    @nahiyanalamgir7056 Рік тому +1

    And a lot of people thought it'd involve fluid simulation, haha. This method on painting the puddles is so amazing!

  • @hapexzm
    @hapexzm Рік тому +1

    Thanks so much for these clear tuts, as a complete noob I found Blender to be quite a steep learning curve at first but like most things the more you learn the quicker / easier it gets

  • @shaharklinger
    @shaharklinger Рік тому +1

    Great tutorial, thank you for taking the time to do it.
    Regarding the explanation at 10:30 about why the concrete looks darker. It's actually caused by something else: a rough surface (such as concrete) will reflect light in all directions. Some of the illuminant's light (e.g. the sun) will reflect off it and hit your eyes, and a lot of the ambient light (e.g. the sky) will also reflect and hit your eyes. The result is a bright mix of sun and sky.
    A polished surface, such as a concrete with a layer of water on it, will reflect light in a much more concentrated way. Not much of the ambient light will reflect back to your eyes. The result may be a darker color, depending on where you stand and what is being reflected off the surface. It might actually be brighter than the surrounding matte surface (e.g. the sun reflecting directly off the water).

  • @Pollutens
    @Pollutens 11 місяців тому

    I've never even edited video or used blender and I was fascinated by this tutorial.

  • @debadityanath4398
    @debadityanath4398 10 місяців тому

    i cant believe that decreasing the roughness give this good of an effect for wetness

  • @halfbee7886
    @halfbee7886 Рік тому

    If anyone deserves the title “guru” more than anyone, it’s this guy.

  • @rafi030303
    @rafi030303 Рік тому +1

    I really would like more tutorials from Andrew, the way he's talking and explaining things make me wanna use blender more with every second. I guess that's the way you talk about things when you are really passionate about it.

  • @PaladinVII
    @PaladinVII Рік тому

    21:43 THIS! THIS THIS THIS! THIS IS WHAT I WAS LOOKING FOR! THIS IS HOW YOU GET WEIGHT PAINT IN THE SHADER EDITOR!!! YOU HAVE NO IDEA HOW LONG I HAVE BEEN HUNTING FOR THIS SOLUTION!!! YOU ARE THE CHAMP OF BLENDER!!! THANK YOU!!!

  • @Ryxles_YT
    @Ryxles_YT Рік тому +82

    So you're telling me I know how to make realistic puddles but don't know how to move around the camera in blender 🤣

    • @rosarielle7275
      @rosarielle7275 3 місяці тому +1

      Wait i need to know too, someome please tell me how to move that damn camera

    • @eeabu
      @eeabu 2 місяці тому +1

      @@rosarielle7275 click camera press g

    • @roe.num77
      @roe.num77 29 днів тому

      ​@@rosarielle7275open the side menu by pressing n, in the view tab, enable camera to view option, now your cam move your camera with your mouse cursor( while you are in the camera view)

  • @dslynx
    @dslynx Рік тому

    Yup, you are an excellent teacher. I just installed Blender on a low end machine and was able to follow this tutorial without much trouble. Hardest thing for me was figuring out how to turn on the "sidebar" to get the tabs.

  • @Soulsphere001
    @Soulsphere001 Рік тому

    Thank you for all your free tutorials, Blender Guru. I first heard about you in 2013, from a classmate, when I was first learning about Blender and I'm glad he told me about you.

  • @remrucgi
    @remrucgi Рік тому +2

    I really appreciate the way you break down complex topics into manageable steps and provide helpful tips along the way ❤

  • @HeadShotHarp
    @HeadShotHarp Рік тому

    I just read your latest newsletter about Apples Vision Pro and the possible future of VR. That was a very interesting article and I just wanted to thank you for all the insights you provide that I was just enjoying silently over the last years. Thank you.

  • @Al_KR_t
    @Al_KR_t Рік тому +2

    You could probably also use all the textures that mask wetness into displacement so that actual geometry has small pits where puddles are and small hills where dry land is

  • @energystrong
    @energystrong Рік тому +2

    For the multiply mix with the vertex paint since it's a multiply you don't need to put the attribute in A and the noise texture in B specifically (Since A x B = B x A, so the order does not matter)
    But you should put the noise texture in A because A in the input blender passes through when you mute the mix node. meaning that by muting the node you get rid of the vertex color masking if you don't want to use it.

  • @dmi3413
    @dmi3413 Рік тому +1

    Generally considered myself fairly well versed in material creation and I still learned a few things from this. Thanks!

  • @jmac217x
    @jmac217x Рік тому +5

    well done. I was getting most of the way there with my materials lately but the couple of techniques you demonstrated really shed light on some of the more intricate processes I am now starting to be aware of. I feel like water is a big thing that anyone can tell is right or wrong but not a lot of people can say what is right or wrong about it like you broke down in your references

  • @jellybean5929
    @jellybean5929 Рік тому

    I hope to one day make banger tutorials like this. Information should be free and accessible like this.

  • @anottee
    @anottee Рік тому

    Man i have picked up blender and thrown it out 4 times over the past several years, only to get frustrated to the point i threw my PC out the window, i discover your donut video recently through several hundred references from other UA-camrs and i was amazed by how you made me realize i was making everything harder then it needed to be and i am so psyched to give this a try. Thank you for giving me an outlet while while i was couch locked due to a broken ankle and helping me finally chase a dream.

  • @kemonoshift
    @kemonoshift Рік тому

    thanks for actually explaining what each nodes are and what theyre doing, im new to blender and thats very helpful :>

  • @-jxvi
    @-jxvi 2 місяці тому

    DUDE you just solved every problem I've had with every other puddle tutorial. There's always something slightly off with every single one.

  • @michaelmansell8498
    @michaelmansell8498 Рік тому

    Decided to pick blender back up again this last week, and so happy your still making videos. Great explanations. THANK YOU

  • @Squish_Squash
    @Squish_Squash 3 місяці тому +1

    I don't even use blender, this was just fun to watch

    • @isabellacosby
      @isabellacosby Місяць тому

      sameee at first i was curious how cgi worked and here i am 3 hours later binging every single vid i can 😂

  • @jarekczarniak1122
    @jarekczarniak1122 Рік тому

    a very cool theme to create an animation of a growing puddle in the rain

  • @AndrewPace77
    @AndrewPace77 Рік тому +1

    I've been watching your tutorials since 2009 or so, and I have to say, they just get better. Thanks for sharing your expertise, as always. :)

  • @joshuahenn6498
    @joshuahenn6498 Рік тому +2

    Thank you for your service to the whole community! Don´t know where we would be without you haha

  • @bogxd
    @bogxd Рік тому

    I just randomly got recommended this video (never used blender ever) and couldn't help but watch it all

  • @Nitroburner01
    @Nitroburner01 9 місяців тому

    One of the reason I liked Jackie Chans Police Story 3 (Supercop) so much was seeing Michelle Yeoh hanging on a truck in traffic, jumping off onto a moving car, and driving a motorcycle on a moving train. Clearly seeing the actors faces (before CGI face replacement existed) while doing stunts made this movie so much more real and enjoyable to watch.

  • @vampirehunter9303
    @vampirehunter9303 Рік тому +2

    OMG!!
    THAT'S REALLY HELPFUL.
    YOU REALLY ARE GURU !!!
    ALWAYS KEEPS ON GIVING TO THE BLENDER SOCIETY.

  • @Andy_Shust
    @Andy_Shust Рік тому

    Andrew, you are King! You not only teach, you also inspire to move on, to learn and improve. Thank you for every second of your videos!

  • @FunnyAmprsar
    @FunnyAmprsar Рік тому +7

    Dude I literally just was thinking about making a scene and one of the key thing was puddles. Now, I got it from the best artist I know. Also, we need more tutorials like the Cabin

  • @Kenjineering
    @Kenjineering Рік тому

    I love your smiling head in your thumbnails mate! Great tutorial! Love the energy! Keep it up! Thank you!

  • @MrRamzapr
    @MrRamzapr Рік тому

    thanks man you are the one how got me to use Blender and all this CGI community

  • @patwood7745
    @patwood7745 Рік тому

    IMHOP this is one of the best videos you have produced and that is saying a lot, because I like all of your videos :-).

  • @whynotanyting
    @whynotanyting Рік тому

    Every time I go outside after rain I always wanted to recreate puddles because they just give a sense of "freshness". Unfortunately, I'm not great with shaders. Thank you!

  • @curhob
    @curhob Рік тому +1

    Just fyi, the only reason it works to use blue as a normal is that the surface is pointing directly up. The problem is that if you were to create physical bumps across this plane that means it doesn’t point straight up anymore, but your shader is still treating the surface as if it is. Also, because black doesn’t point anywhere, you can’t represent a normal that points down, left or back. What you would actually want to do in this case is to set the mix type to Vector, then use Input > Geometry > Normal as the second input. If you just viewed the output of that on a sphere, one octant would appear black. This is because all 3 axes corresponding to RGB can’t be represented because they are all in negative range. That will give you negative numbers if down, left, or back.

    • @TomMAF4
      @TomMAF4 11 місяців тому

      When you say second input, do you mean B? I find that this doesn't look any different to if the mix node wasn't even there. Looks significantly different to using the mix colour node even if it only works on flat surfaces. Any idea where I'm going wrong with this please?

  • @jameshetfield159
    @jameshetfield159 10 місяців тому

    I think the day before the final exam is the worst time to discover you as I've been sitting watching you for three hours now while my work still waits 🤐

  • @sharkehuk
    @sharkehuk Рік тому +1

    Wow, you got through the whole video without saying moist. I don't know whether to be impressed or upset. Either way I enjoyed the tutorial, thanks!

  • @BensMiniToons
    @BensMiniToons Рік тому +1

    Is his videos still just a ad for his paid plugins and textures? I used to love this guy. ='[

  • @gottagowork
    @gottagowork Рік тому +1

    Keep in mind that dielectrics will have their specularity value significantly reduced if submerged in water. Take a bubble wrap, plastic bag, or clearly shiny dielectric material and submerge it in the sink, and you'll see the shininess go almost completely away. This will not happen to noticeable effect on conductors (metals). Reducing bumpiness is technically a hack that just happens to do an "okay enough" job on some types of surfaces.

  • @jmalmsten
    @jmalmsten Рік тому

    I did buy a book called The Art and Science of Digital Compositing. A very dry book that I read from cover to cover. A good chunk of it was dedicated to listing and explaining the maths of each blending mode.
    I recommend buying it if dear reader has the same odd interests as me.

  • @vladizt5943
    @vladizt5943 Рік тому

    Good old andrew and shader node tutorial, always very helpful.

  • @walt436
    @walt436 Рік тому +2

    Thanks!! You’re lookin so much healthier!

  • @DesignerGeek2525
    @DesignerGeek2525 Рік тому

    Unbelievable, You used the nodes in an effective way! 😮😍

  • @Domzdream
    @Domzdream Рік тому

    Even though Blender drives me bat crap insane, I’ll use this. Thank you.

  • @asaph96
    @asaph96 Рік тому

    acerola's channel explained very well the difference between blend modes

  • @palpytine
    @palpytine Рік тому +1

    Two things....
    1) This should probably be done using clearcoat instead of roughness to make it more physically accurate. 2) The main difference between the various brightening/darkening blend modes is usually how they behave in clipping scenarios at the extremes of light and dark

  • @SUVO_RAW
    @SUVO_RAW Рік тому

    Thanks for another perfectly working tool and knowledge, your complex yeat easy to understand tutorials is the best thing in the world of 3D

  • @salimsam174
    @salimsam174 Рік тому

    I started using blender with 2.79 with his donut and anvil series. I am still finding him the best tutorial maker after ianhubert.

  • @AleeyuYarima-hp8zh
    @AleeyuYarima-hp8zh Рік тому

    Best blender tutor I’ve seen so far on UA-cam. Keep up the good work andrew👏🏽

  • @TY_Blender
    @TY_Blender 11 місяців тому +2

    22:42 Shift+K -> Ctrl+X // Menu : 'Paint' -> 'Set Vertex Colors'

    • @21hawk21
      @21hawk21 11 місяців тому

      you are my hero, thank you

  • @imjody
    @imjody Рік тому

    Yeah, this is simply REMARKABLE, man. Like truly. Thank you so much for this. Insane.

  • @AndreasKempe
    @AndreasKempe Рік тому

    Ich liebe Menschen, die wissen was sie tun. Vielen Dank für das Tutorial.

  • @frey8966
    @frey8966 Рік тому

    U r really my favorite in way of explaining things in blender. but I'm hoping it is way easier to do!

  • @breaneainn
    @breaneainn Рік тому

    Cool! Even works with the RGB channels for displacement. Wet asphalt with some pooled water. Cheers!

  • @koigamer7352
    @koigamer7352 Рік тому

    very nice! A year ago i did a similar (lazy) effect just using noise textures and color ramps. It was looking okayish but not super realistic.
    This takes it to the next level.

  • @OttrPopAnimations
    @OttrPopAnimations Рік тому

    wow!! this is such a quality tutorial. were so lucky to have you, Guru...

  • @richNfit4life
    @richNfit4life Рік тому

    Positively brilliant! For me, however, I’ll call it “Puddled-Wetness”. Thank you so much for that.

  • @omf-arch1765
    @omf-arch1765 Рік тому +1

    Well done, magnificent I can now creat a photorealistic rain 🌧️ environment. Very nice.

  • @arealist8913
    @arealist8913 Рік тому

    Man! Your voice has so much depth!

  • @mobinvaryan7196
    @mobinvaryan7196 Рік тому

    another blender guru tutorial a blessing from the lord. thanks man

  • @carlosespinal3645
    @carlosespinal3645 Рік тому

    Thank you teacher, keep transmitting your knowledge

  • @spasticjackson9578
    @spasticjackson9578 Рік тому +2

    Your chair and your shirt are similar colors. It looks like you are HUGE. You have superhero shoulders. I can't un-see it. 0:46

  • @pa_artiffect
    @pa_artiffect Рік тому +1

    Mannn please make more of these realistic/realism videos.😊

  • @OnePatrix
    @OnePatrix Рік тому

    Andrew new Tutorial? its simply a must watch

  • @snofixart
    @snofixart Рік тому

    You make a video on how you make these tutorials so engaging.

  • @maximkrioukov4597
    @maximkrioukov4597 2 місяці тому

    Your tutorials are always masterpieces! Thank you Sir!

  • @ballashoes
    @ballashoes Рік тому +1

    So glad you're alive

  • @micah6861
    @micah6861 Рік тому

    You are still doing the most amazing tutorials 🥰 Thank you!

  • @EliezerGrawe
    @EliezerGrawe Рік тому +4

    New video, pleaaaase!

  • @the_tunez
    @the_tunez Рік тому

    this is dope! Now I can pay for the Poliigon subscription in Reais (Brazil's currency), I'm gonna absolutely demolish these material tuts! Thanks a bunch dude, you're the G.O.A.T.!

  • @alivetutors
    @alivetutors Рік тому

    Multiply mode means top layer darkness will be multiplied to bottom layer while Screen means top layer lightness will multiply with bottom layer values.
    In Multiply, top black will overpower bottom layer while in Screen, the Top white will overpower bottom layer.
    In Overlay, the deviation from Grey is multiplied to botoom layer values. If it is lighter, it will create lighter shades of bottom layer while if it is darker than 50% grey, it will make bottom layer darker. So Overlay basically increases contrast of bottom layer depending on the data from top layer. If top layer in overlay mode is grey, it will have no effect on bottom layer, While both White and black on top layer with overlay will affaect bottom layer.

    • @alivetutors
      @alivetutors Рік тому

      A very useful video here: ua-cam.com/video/MsukMXtEYFQ/v-deo.html

  • @coralineyang46
    @coralineyang46 3 місяці тому

    Every time I think yay this works, this looks about right, you're like "but something's still missing" XD. Great tutorial and I really appreciate how you go into the detailed reasons behind things!

  • @TheSamucacs
    @TheSamucacs Рік тому

    Always nice to see your tutorials!

  • @rs305
    @rs305 Рік тому

    Thank You for the detailed explanation, helps out a lot understanding some of the nodes. Appreciate the tutorials !

  • @francoiscilliers8961
    @francoiscilliers8961 Рік тому

    Wow, I actually did the whole thing already! Hooray for me!

  • @Lucas72928
    @Lucas72928 Рік тому +1

    Instead of using a color ramp I would use "greater than" in a math node, so you can have it as an input to the node group

  • @Storyteller_DreamFort
    @Storyteller_DreamFort Рік тому +1

    we need this again in newer version of blender: "Create a Photorealistic Fruit Splash in Blender"

  • @ibragimov12
    @ibragimov12 Рік тому +1

    Hi bro thank you very big for beginer video becuse I lerant a lots of thing from this and you are my hero ✊

  • @udaracs5580
    @udaracs5580 Рік тому

    this is the best puddle tutorial out there!

  • @cry2love
    @cry2love Рік тому +2

    While making a cgi puddle, I managed to create a real one from coffee on my desktop. Not sure if I should be mad because from a 3D perspective it is perfection.

  • @MaknaOnlineStore
    @MaknaOnlineStore 3 місяці тому

    You're Awesome Man! Very clear and enjoyable the way you explain things. I can't imagine being able to do what you do. I'm very grateful to have found your channel. Very happy to subscribe. Thank you!

  • @sixeight-design193
    @sixeight-design193 Рік тому

    Finally i found the tutorial puddle water , thanks!