Hi!
I'm trying to override a parameter in a very simple vrscene with a red box and a light.
Here is my scene:
Google gave me this:
http://www.grapheastegypt.com/vray/b...ons/index.html
According to the article I should be able to do the override just like this:
I can only get it to work if I'm overwriting very specifically like so:
If I try other pattern selections on different parameters, it's also not working:
Also, if I add the "clay override" snippet from the article, that seems to not work at all.
I'm using Vray Standalone 5.20.23
vrscene file is attached to this post.
Or view it here: http://fridayvfx.com/clipupload/myVrscene.vrscene
p.s. I wonder if It's possible to do multiline comments in vrscene files? I checked /*comment*/ but that does not seem to work.
Thank you for any input on this!
-Robert
I'm trying to override a parameter in a very simple vrscene with a red box and a light.
Here is my scene:
Google gave me this:
http://www.grapheastegypt.com/vray/b...ons/index.html
According to the article I should be able to do the override just like this:
Code:
BRDFVRayMtl <red*> { diffuse=AColor(0, 1, 0, 1); } // not working
Code:
BRDFVRayMtl redMTL@mtl_brdf_0 { diffuse=AColor(0, 1, 0, 1); } // working
Code:
Node <*> { visible=0; } // not working
Code:
LightDome <VRayLight*> { enabled=0; } // not working
I'm using Vray Standalone 5.20.23
vrscene file is attached to this post.
Or view it here: http://fridayvfx.com/clipupload/myVrscene.vrscene
p.s. I wonder if It's possible to do multiline comments in vrscene files? I checked /*comment*/ but that does not seem to work.
Thank you for any input on this!
-Robert
Comment