Since I'm developing a small script, I wanted to know whether it is possible with MAXScript to check if there's a copy of VRay running or not.
Any suggestions?
Any suggestions?
if findstring (rendererclass.classes as string) "v_ray" != undefined then messagebox "success" else messagebox "bad bad bad"
mystring = "" as stringstream format "Renderers installed:\n\n" to:mystring for i in rendererclass.classes do ( format "%\n" i to:mystring ) messagebox mystring as string
Comment