Notifications
Clear all
[Closed] Vray 2 MAXScript
Jan 22, 2011 7:35 am
how can i get properties for Vray 2.00.02 in MAXScript??..i got this site with all properties but not working with Vray 2
4 Replies
Jan 22, 2011 7:35 am
ok…found out how to control renderer properties…but still cant control cameras via maxscript
2 Replies
GetPropNames <what> – results an array with all available property names.
for any renderer would be:
theProperties=GetPropNames (renderers.current)
to get the value of a property using the property name:
val=GetProperty (renderers.current) theProperties[1]
to set a value:[b]
SetProperty (renderers.current) theProperties[1] val
[/b]More info can be found in maxscript reference…
Jan 22, 2011 7:35 am
You don’t need this link, read the maxscript reference, for basic instructions how to access objects and properties.