Proxy scripts and Multiple UV Sets
I successfully got the 2 proxy scripts to work with alternate UV Sets
by using this syntax.
var oSurfaceProperties = {
"Tape" : [
"UV Set/Default UVs/Tape Narrow"
]
};
but when I try to add more than one, like so
var oSurfaceProperties = {
"Tape" : [
"UV Set/Default UVs/Tape Narrow/Tape Small/Tape Square"
]
};
the script has no effect. No error, no new Surface channel.
I also tried
var oSurfaceProperties = {
"Tape" : [
"UV Set/Default UVs/Tape Narrow",
"UV Set/Tape Small"
]
};
and other variations with no success.
Is it possible to proxy link more than 1 alternate UV Set? If so, does anyone know what code line I need?