Houdini | Custom Wind Microsolver | Pyro Quick Tip

Поділитися
Вставка
  • Опубліковано 11 вер 2024
  • Use this Black Friday code for 25 percent off:
    blackfri2022
    (expires on Tuesday, Nov. 29th)
    To visit the course, go to:
    www.cgforge.co...
    Thanks for watching!

КОМЕНТАРІ • 12

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

    Cool but i thinks before clamp you need a fitrange, to better catch the right targhet. i think is better to fit 0.5-2 to 0,1 then clamp density and ramp , in this way i think you could leave a greater amplitude for this wind. But you are the master :)

    • @cgforge
      @cgforge  10 місяців тому +1

      Good idea! Either way totally works. I've done it with the fit method as well, and that does a better job at getting those inbetween values. The clamp might be a little easier to control if density values change significantly over time.

  • @0x384c0
    @0x384c0 8 місяців тому +4

    For VEX lovers here is code, that does same thing, while using with gasfieldwrangle
    *@vel += chv("wind_direction") * chramp("density_mask_ramp", fit(@density, chf("density_min"), chf("density_max"), 0, 1));*

    • @cgforge
      @cgforge  8 місяців тому +2

      Indeed! And that gasfieldwrangle ought to perform better as well. Thanks for sharing

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

    Fantastic!

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

    really nice

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

    WOW! thank you so much for this trick!!

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

    Brilliant! Thank you

  • @billy_the_kid669
    @billy_the_kid669 14 днів тому

    its weird.. I tried this to go in a -Z direction and It always travelled 1 in XY and Z. like it was only receiving a float to all vectors. Checked to make sure I was in and out Vector vel. I dunno why it isn't working

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

    Helpful trick

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

    can i do this with a pyrosolver sop?

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

      You can do most of this with the pyrosolver sop. The pyrosolver sop is just a wrapper that goes around a DOP network. So, for the parts that require some custom dop operations, you can go in there and do the same.