Just a thought but a global or selected option for switching btwn bounding box and preview from file in the viewports.
-dave
-dave
Important: Update Your Chaos Licensing by January 28, 2025
To ensure uninterrupted access to your licenses, an essential update is required by January 28, 2025. Failure to update your Chaos licensing will result in the loss of access to your licenses.objs = $objects for i = 1 to objs.count do ( if classof objs[i] == vrayproxy do ( if objs[i].display == 0 then (objs[i].display = 1) else (objs[i].display = 0) ) )
objs = $objects for i = 1 to objs.count do ( if classof objs[i] == vrayproxy do ( objs[i].display = 0 ) )
objs = $objects for i = 1 to objs.count do ( if classof objs[i] == vrayproxy do ( if objs[i].display == 0 then ( objs[i].display = 1 objs[i].boxmode = off ) else ( objs[i].display = 0 objs[i].boxmode = on ) ) )
Comment