-
is there a way to get the smoothness slider on a gltf shader, or perhaps a way to turn down the reflection scale? |
Beta Was this translation helpful? Give feedback.
Answered by
atteneder
Jan 23, 2023
Replies: 1 comment
-
Hi, glTF materials/shaders have a For even greater control of the specularity of a material, there's also the glTF extension KHR_materials_specular, which is not yet supported (see #208). hth |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
recore67
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi,
glTF materials/shaders have a
roughness
property, which controls the same physical property assmoothness
does on other shaders. It's just the inverse (mathematicallyroughness = 1-smoothness
).For even greater control of the specularity of a material, there's also the glTF extension KHR_materials_specular, which is not yet supported (see #208).
hth