I need help. I can’t seem to get this to work. All I need to do is connect an image here to the vertex position in my PBR Master node, but anything related to an image doesn’t seem to work. Is there any way I can convert this texture into an acceptable format that the Vertex Position will accept?
Edit: I know Sample Texture 2D needs to be expanded. I forgot to expand for the screenshot.
Hi,
Sample Texture 2D internally uses ddx/ddy to determine LOD levels. Since those are not allowed in the vertex shader, it can not be plugged into anything leading into Vertex Position.
Use Sample Texture 2D LOD instead for the vertex phase.