Hi there folks,
My very first post seems like such a silly question, but no amount of logic / reading / tutorials seems to point me as to why this is the case so here it goes.
Disclaimer - I'm relatively new to Houdini, month into it, but not 3d, which I've been doing for decades.
This is a very simple setup, box>poly bevel>transform> then time blend held at frame 1 into rest position etc.
Then I simply setup a principled shader and enable noise displacement.
Noise sticks with transformed object - YAY! (top part of GIF)
If I then simply Promote Parameter - Amplitude then the whole thing breaks (bottom part of GIF)
Any parameter it seems?
Why is this the case and what am I doing wrong/ missing as a concept here ?
Cheers
Promote Parameter = swimming displacement ?
2562 4 1- adk
- Member
- 6 posts
- Joined: 4月 2015
- Offline
- jsmack
- Member
- 8036 posts
- Joined: 9月 2011
- Offline
This is a limitation of called/nested shaders.
Connecting an input to a shader causes it to be called by an outer shader, passing the inputs to it, and passing the called shaders outputs to the output. The caller only knows about the parameters wired directly into the callee, and not about any attributes that may have been bound by the shader.
You will find that as soon as any wire is connected to a shader, attributes that it bound no longer work, such as Cd/Alpha/rest/uv, etc. The only way to get bound attributes to the called shader is by binding them in the outer shader and passing them in as inputs. For now, only uv is exposed for this purpose. The preferred work around is to probably compute displacement externally, and wire in a displacement amount to ‘disp’. The noise inside the principled shader is nothing special, just a turbulence vop.
Connecting an input to a shader causes it to be called by an outer shader, passing the inputs to it, and passing the called shaders outputs to the output. The caller only knows about the parameters wired directly into the callee, and not about any attributes that may have been bound by the shader.
You will find that as soon as any wire is connected to a shader, attributes that it bound no longer work, such as Cd/Alpha/rest/uv, etc. The only way to get bound attributes to the called shader is by binding them in the outer shader and passing them in as inputs. For now, only uv is exposed for this purpose. The preferred work around is to probably compute displacement externally, and wire in a displacement amount to ‘disp’. The noise inside the principled shader is nothing special, just a turbulence vop.
- adk
- Member
- 6 posts
- Joined: 4月 2015
- Offline
- jsmack
- Member
- 8036 posts
- Joined: 9月 2011
- Offline
- adk
- Member
- 6 posts
- Joined: 4月 2015
- Offline
-
- Quick Links