-
Hello ! Sometimes, the UI for a material can get pretty bloated when you have a lot of parameters, especially if set by code. I was wondering if there was an easy way to either:
Thanks for the answer! |
Beta Was this translation helpful? Give feedback.
Answered by
pragma37
Jun 9, 2022
Replies: 1 comment 1 reply
-
All-caps uniforms and uniforms that start with an underscore are hidden in the UI: uniform bool _is_hidden = true;
uniform bool IS_HIDDEN = true; There's currently no way to collapse all properties. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
panthavma
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
All-caps uniforms and uniforms that start with an underscore are hidden in the UI:
There's currently no way to collapse all properties.