An option for vray not to use all available cores would be awesome. I would set it to -1 (all available cores -1) all the time as I invariably end up doing this in task manager anyway.
thanks!
thanks!
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.renderers.current.system_numThreads=N
renderers.current.system_numThreads = systemTools.NumberOfProcessors() - 1
renderers.current.system_numThreads = 0
--simple render thread setter for vray --mail at rensheeren.com try(destroyDialog rltMain) catch() rollout rltMain "Set Render Threads" ( fn fnSetAll = ( renderers.current.system_numThreads = 0 ) fn fnSetMinOne = ( renderers.current.system_numThreads = systemTools.NumberOfProcessors() - 1 ) fn fnGetUsedThreads = ( iThreads = renderers.current.system_numThreads ) button btnSetAll "Set to All" button btnSetMinOne "Set to All-1" editText edtThreads "Threads (0=All):" text:(fnGetUsedThreads() as string) readOnly:true on btnSetAll pressed do ( fnSetAll() edtThreads.text = fnGetUsedThreads() as string ) on btnSetMinOne pressed do ( fnSetMinOne() edtThreads.text = fnGetUsedThreads() as string ) ) createDialog rltMain
Comment