Page 1 of 1
Vectron UI does not show all parameters
Posted: Tue Oct 05, 2021 11:12 pm
by Martians
It is still not possible to see all the vectron parameters when loading certain osls with many params. Is there any way to easily remedy this?
https://photos.app.goo.gl/AZHnjyffF1RCEN2z5
Re: Vectron UI does not show all parameters
Posted: Fri Oct 08, 2021 11:15 am
by neonZorglub
Hi Martians,
From your screenshot, it seems you are using a desktop scale > 100 %
So I guess there could be a small UI error with some variable types (like integer combo boxes)..
Could you send me a sample of such big osl ?
I'll check and it should be fixed in the next release.
As a work around, you could add some dummy variables at the end of your input variable list, for example
shader myShader(
... your list,
float dummyVar01=0,
float dummyVar02=0,
...
float dummyVar99=0,
output _sdf c = _SDFDEF)
{
..
}
You will get some warnings of unused variables, but at least you should see and use all your parameters..
Thanks
Re: Vectron UI does not show all parameters
Posted: Fri Oct 15, 2021 3:31 am
by neonZorglub
UPDATE:
This is fixed in 2020.2.5 - 11.15:
viewtopic.php?f=80&t=78547
and 2021.1 RC3 - 12.05:
viewtopic.php?f=80&t=78548
Re: Vectron UI does not show all parameters
Posted: Thu Oct 21, 2021 1:12 am
by Martians
So awesome, Thanks for fixing that!