Help me, please, how to check up version of VRay with maxscript?
(sorry for my bad English)
(sorry for my bad English)
rendererlist = rendererClass.classes -- returns all the installed renderers as an array for i = 1 to rendererlist.count where (findstring (rendererlist[i] as string) "Vray") != undefined do vrayClass = i -- loop through the array until it finds a rendererclass that is Vray.. and mark down that index.. rendererlist [vrayClass] -- that will be the last entry in the list that has the word "Vray" inside it.
Comment