Proxy scripts and Multiple UV Sets

I successfully got the 2 proxy scripts to work with alternate UV Sets

http://docs.daz3d.com/doku.php/public/software/dazstudio/4/referenceguide/scripting/api_reference/samples/elements/post_load_material_proxy_create/start

http://docs.daz3d.com/doku.php/public/software/dazstudio/4/referenceguide/scripting/api_reference/samples/elements/post_load_material_proxy_link_properties/start

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?

Sign In or Register to comment.