Jump to content

Pyro noise issue


Recommended Posts

I am trying to render smoke with pyro but I m having jumpings on the texture noise even with the dual rest turned on I am also using billowy smoke shader, anyone else having this problem?

Obs: Using Houdini 11.1.

Thanks.

Edited by Mzigaib
Link to comment
Share on other sites

Hummm, theres no option for dual rest, how could i make this work inside the shader?

Thanks for the feedback.

Use the Pyro shader which supports dual rest fields out of the box. The dual rest functionality can be ported to other shaders and renderers but why reinvent the wheel? If you decide to add the functionality essentially the shader should always be looking at the field that isn't resetting and fade back and forth between them as the reset alternates.

Link to comment
Share on other sites

Use the Pyro shader which supports dual rest fields out of the box. The dual rest functionality can be ported to other shaders and renderers but why reinvent the wheel? If you decide to add the functionality essentially the shader should always be looking at the field that isn't resetting and fade back and forth between them as the reset alternates.

Thanks for the feedback!

I would like to port this for a VOP VEX shader because 1st I would like to learn 2nd I still not good with code so using vop shop is easier to me, I didn't test it yet but can you tell me if i can get the same results with the pyro shader comparing to billowy smoke shader?

Thanks.

Edited by Mzigaib
Link to comment
Share on other sites

if you want to make custom billowy smoke,

you can use inline code inside If Do noise and write like below,

float drw = ($frame-$start)%$rate;

float bw;

drw = smooth(0,$rate*0.5,drw) - smooth($rate*0.5,$rate,drw);

bw = lerp($noise2,$noise,drw);

$out = bw;

$frame is current frame ($FF)

$start is start frame

$rate is reset every frame

you can also see code from pyro shader and you can find very similar code.

or you can build without inline code like this pic

chaos1 connected to noise1 with rest1

chaos2 connected to noise2 with rest2

Hope this helps

Cheers

post-4901-13161144061_thumb.jpg

  • Like 2
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...