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 Chaos License Server update January 28th 2025.
If you have not yet updated your License Server to version 6.1 or above and are unable to access your license please follow these simple instructions HERE.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