Is there anyway to set the defaults to expert for 3.0?
Announcement
Collapse
No announcement yet.
Vray 3.0 Expert settings by default?
Collapse
X
-
Originally posted by jneilon View PostIs there anyway to set the defaults to expert for 3.0?
Yes, this is something that we can improve to the V-ray 3.0 UI. It will be considered with our developers.
Meanwhile you can create a default 3ds max start up file using the following steps:
*) open 3ds max
*) open V-ray render settings
*) right click on the UI mode (Basic) and choose Switch all to expert
*) save this scene as maxstart.max to your default scenes folder
You can go to Customize\Configure User Paths to figure out where your scenes folder is pointed to.
-
Thanks, this helps. Although it does not work when creating a new scene it defaults back.
I realized there is a new area in Vray 3.0 under system that allows for saving render presets but it does not make it default unfortunately. I am hoping I will find a config or ini file somewhere that I can just edit.
I like the idea of easy for beginner users but after using Vray for 9 years I like to see all the settings by default.
Comment
-
Originally posted by jneilon View PostThanks, this helps. Although it does not work when creating a new scene it defaults back.
I am hoping I will find a config or ini file somewhere that I can just edit.
Best regards,
VladoI only act like I know everything, Rogers.
Comment
-
Another solution with maxscript, so each time max load a file it turn all VRay panels to expert :
Just put the code in a startup script.
================
function setVRayExpert =
(
vr=renderers.current
vrName = vr as string
if findString vrName "V_Ray_Adv_3" != undefined then
(
rdropen = 0
if (renderSceneDialog.isOpen() == true) then rdropen = 1
renderSceneDialog.close()
vr.gi_ui_view = 2
vr.irradmap_ui_view = 2
vr.lightcache_ui_view = 2
vr.caustics_ui_view = 1
vr.colormapping_ui_view = 2
vr.system_ui_view = 2
vr.options_ui_view = 2
if (rdropen == 1) then renderSceneDialog.open()
clearlistener()
)
)
callbacks.removescripts id:#VRayExpertPostLoad
callbacks.addscript #filePostOpenProcess "setVRayExpert()" id:#VRayExpertPostLoad
================
Comment
-
-
Originally posted by vlado View PostThis was a spam bot I think...
Best regards,
Vlado
Comment
Comment