I can place a texture inside the vraymaterial environment map to overide the main reflection but would also like the option to not have anything else reflect into the material/object to save on render time. Is this possible ?
Announcement
Collapse
No announcement yet.
Fake reflections
Collapse
X
-
I just wrote a quick VrayGLSL map for exactly this purpose. But it only works for pure mirrors.
Code:#version 110 uniform sampler2D Env; void main() { vec3 normal = (gl_FrontFacing) ? vr_Normal : -vr_Normal; vec3 R = reflect(normal, vr_Direction); R = (vec4(R,0.0) * vr_CameraToWorld).xyz; float y = R.z; R.z = R.y; R.y = y; float m = 2.0 * sqrt(pow(R.x,2.0)+pow(R.y,2.0)+pow((R.z+1.0),2.0)); float u = (R.x / m) + 0.5; float v = (R.y / m) + 0.5; vec3 envColor = vec3(texture2D(Env, vec2(u,v))); gl_FragColor = vec4(envColor, 1.0); }
Gavin Greenwalt
im.thatoneguy[at]gmail.com || Gavin[at]SFStudios.com
Straightface Studios
Comment
Comment