Notifications
Clear all

[Closed] Vray 2 MAXScript

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

http://www.cgplusplus.com/online-reference/vray-properties/

4 Replies

ok…found out how to control renderer properties…but still cant control cameras via maxscript

2 Replies
(@slazzo)
Joined: 10 months ago

Posts: 0

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…

(@patriculus)
Joined: 11 months ago

Posts: 0

Thank you so much

You don’t need this link, read the maxscript reference, for basic instructions how to access objects and properties.