in automotive visualization we often encouter a problem with totally messed up lightLinking which comes directly from the dataPrep guys…since we do not have any influence on this it would be totally cool to have a global option next to the “default light” stuff to choose to “ignore all lightlinking” and just consider every object to be lit by every light!
Will make a note for it, however in the recent nightly builds, you can use the post-translate Python callback to delete the SettingsLightLinker plugin, like this:```
from vray.utils import *
p=findByType(“SettingsLightLinker”)
delete(p[0])
you can also edit the .ma file and remove any traces associated with lightlinker1 node. If no node exists in the scene maya will rebuild a new one which should not have any issues.
Don’t you think that a global ‘Ignore’ button would make some difficulties? I mean - it’s nice if you know for sure that you and anybody else in the pipeline won’t do any light linking at all. But a proper set up scene is much more preferable in my opinion.
Isn’t it possible to just open the scene in mayapy clean it up and write it out again? I did stuff like that with some CAD data that was broken afte importing because it had to many display layers for the maya GUI.
No…what problems should it make? If you really need light linking you would know that you have to take care in maya…in any other case (which in my case is always) you just don’t need to worry about anything that may go wrong…
It may work, but that means lots of unnecessary steps in your pipeline…which may always cause problems cause everybody makes mistakes…it’s just not 100% fool-proof like the global option would be.
Anyway i thank vlado for the hint to use vray python functions to remove the lightlinking from the vrscene…that helps a lot already…