List current render properties and output into a new maxscript window


/ Published in: Maxscript
Save to your folder(s)

Thanks to Grant from RPManager for writing and sharing this script.


Copy this code and paste it in your HTML
  1. g = newScript()
  2. pp = getpropnames renderers.current
  3. ppc = for i in pp collect (try(classof (getproperty renderers.current i))catch("--FAILED"))
  4. for i in 1 to pp.count do(
  5. if ppc[i] == String then
  6. try(format "[%,\"%\"] -- %\n" pp[i] (getproperty renderers.current pp[i]) ppc[i] to:g)catch()
  7. else
  8. try(format "[%,%] -- %\n" pp[i] (getproperty renderers.current pp[i]) ppc[i] to:g)catch()
  9. )

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.