Spitballing here,
I would like to affect the scale of gradient noise ( within a clamped range ), so that when my main scene camera moves over the object I have applied that shader too, I can visibly see the gradient noise change, is this possible ?
Spitballing here,
I would like to affect the scale of gradient noise ( within a clamped range ), so that when my main scene camera moves over the object I have applied that shader too, I can visibly see the gradient noise change, is this possible ?
You can access the camera’s position through the camera node.
https://docs.unity3d.com/Packages/com.unity.shadergraph@5.8/manual/Camera-Node.html
Then you could calculate the distance between that position and the object’s position.
Once you have that, the rest of the implementation depends on how exactly you want the scale to change.
Thanks, I’ll look into these.