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
Vectron UI does not show all parameters
Forum rules
Please post only in English in this subforum. For alternate language discussion please go here http://render.otoy.com/forum/viewforum.php?f=18
Please post only in English in this subforum. For alternate language discussion please go here http://render.otoy.com/forum/viewforum.php?f=18
- neonZorglub
- Posts: 1029
- Joined: Sun Jul 31, 2016 10:08 pm
Hi Martians,Martians wrote: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
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
- neonZorglub
- Posts: 1029
- Joined: Sun Jul 31, 2016 10:08 pm
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
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
So awesome, Thanks for fixing that!