diff --git a/export_shader_network_v2.py b/export_shader_network_v2.py index f02845b..41bdf34 100644 --- a/export_shader_network_v2.py +++ b/export_shader_network_v2.py @@ -28,7 +28,8 @@ def testButton(objects, *args): isInterruptable=True ) exporting = True #shaders_to_json(objA=objects, file_path=path[0]) - shaders_to_json(objA=['BATIMENT_PAUVRE_01'], file_path=path[0]) + #shaders_to_json(objA=['BATIMENT_PAUVRE_01'], file_path=path[0]) + shaders_to_json(objA=['pSphere1'], file_path=path[0]) # while exporting: # if cmds.progressWindow( query=True, isCancelled=True ) : # exporting = False @@ -74,6 +75,7 @@ def getAllNodes(nodes, shaderNetwork): # print("__________________________________") # print(cmds.getAttr(n + "." + a, type=True)) # print("__________________________________") + try: type = cmds.getAttr(n + "." + a, type=True) if type != "TdataCompound": @@ -116,6 +118,8 @@ def getAllNodes(nodes, shaderNetwork): shaderNetwork["nodes"][n]["data"][a]["type"] = "TdataCompound" except: pass + + cmds.delete(tempNode) @@ -200,7 +204,7 @@ def shaders_to_json(objA=None, file_path=None): for shader in shaderGroups: type = cmds.objectType(shader) if(type == "shadingEngine"): - print(eachChild) + #print(eachChild) if(shader not in treatedShaders): shaders = [] print(shader) diff --git a/import_shader_network_v2.py b/import_shader_network_v2.py index b7ec443..72655f2 100644 --- a/import_shader_network_v2.py +++ b/import_shader_network_v2.py @@ -36,8 +36,17 @@ def createNodes(self): #texture = "project://scene/" + str(material) elif type: #texture = createNode(node, type, default_path) - n = Node(node, value["type"], type[1], value["data"]) - self.nodes[n.name] = n + if(isinstance(type[1], dict)): + if(type[1]["key"] in value["data"]): + n = Node(node, value["type"], type[1][str(value["data"][type[1]["key"]])], value["data"]) + self.nodes[n.name] = n + else: + n = Node(node, value["type"], type[1]["default"], value["data"]) + self.nodes[n.name] = n + else: + n = Node(node, value["type"], type[1], value["data"]) + self.nodes[n.name] = n + #print(texture.name) # if texture: @@ -80,8 +89,8 @@ def linkNodes(self): def replaceTriplanars(self): for name, node in self.nodes.items(): if(node.typeM == "aiTriplanar"): - print("Triplanar") - print(node.name) + #print("Triplanar") + #print(node.name) files = [] for input in node.input: for output in node.output: @@ -90,20 +99,26 @@ def replaceTriplanars(self): node.output = [] files = self.getLinkedFiles(node.input) + + index = 1 + for file in files: - print(file.output) + #print(file.output) doDuplicate = True for output in file.output: if output["to"].typeM == "aiTriplanar": - print(output["to"].typeM) + #print(output["to"].typeM) doDuplicate = False if not doDuplicate: continue duplicate = self.duplicateTriplanar(node) + duplicate.name = duplicate.name + str(index) + index += 1 duplicate.output = file.output + duplicate.input.append(file) connection = ["right", "left", "top", "bottom", "front", "back"] file.output = [{"to": duplicate, "connection": connection}] self.nodes[duplicate.name] = duplicate @@ -113,7 +128,7 @@ def replaceTriplanars(self): for c in output["connection"]: ix.cmds.SetTexture([str(output["to"].path) + "." + str(c)], str(duplicate.path)) - self.addNodeValue() + self.addNodeValues() def getLinkedFiles(self, n): @@ -134,35 +149,56 @@ def duplicateTriplanar(self, node): duplicate = Node(node.name, node.typeM, node.typeC, node.data) return duplicate - def addNodeValues(self, node, data): + def addNodeValues(self): + for name, node in self.nodes.items(): + if(node.typeM == "remapHsv"): + ix.cmds.SetValues([str(node.path) + ".output_color_model"], ["1"]) + continue + elif(node.typeM == "aiNoise"): + ix.cmds.SetValues([str(node.path) + ".color1"], ["0.0", "0.0", "0.0"]) + ix.cmds.SetValues([str(node.path) + ".color2"], ["1", "1", "1"]) + + for parameter, value in node.data.items(): # print("----------------" + node + "ADD NODE VALUES----------------") #print(str(data["type"]) + ": " + str(data["data"])) - for parameter, value in data["data"].items(): + #for parameter, value in data["data"].items(): # print(str(parameter) + ": " + str(value)) - type = parameterSwitch.get(parameter) + type = parameterLibrary.get(parameter) - if not type: - continue + if not type: + continue + + # if(isinstance(type, list) and isinstance(type[0], str)): + # type[1](data, value, type[2]) + # continue + if(isinstance(type, dict)): + if(node.typeM == "aiTriplanar" and value["type"] == "float3"): + type["aiTriplanar"](node, value["value"]) + continue + if(node.typeM == "aiNoise"): + type["aiNoise"][0]([str(node.path) + "." + str(type["aiNoise"][1])], [str(value["value"][0][0]), str(value["value"][0][1]), str(value["value"][0][2])]) + continue + elif(isinstance(type, list)): + if(value["type"] == "string"): + type[0]([str(node.path) + "." + str(type[1])], [str(value["value"])]) + #ix.cmds.SetValues([str(data["type"]) + "." + str(type)], [str(value["value"])]) + continue + elif(value["type"] == "float" or value["type"] == "long"): + type[0]([str(node.path) + "." + str(type[1])], [str(value["value"])]) + continue + elif(value["type"] == "float3" and parameter != "scale"): + type[0]([str(node.path) + "." + str(type[1])], [str(value["value"][0][0]), str(value["value"][0][1]), str(value["value"][0][2])]) + continue + elif(value["type"] == "bool"): + if(value["value"]): + type[0]([str(node.path) + "." + str(type[1])], ["1"]) + continue + elif(value["type"] == "TdataCompound" and node.typeC == "TextureRemap"): + type(node.path, value["value"]) + continue + elif(value["type"] == "string" or value["type"] == "float"): + type(node, value["value"]) - # if(isinstance(type, list) and isinstance(type[0], str)): - # type[1](data, value, type[2]) - # continue - if(value["type"] == "string"): - type[0]([str(data["type"]) + "." + str(type[1])], [str(value["value"])]) - #ix.cmds.SetValues([str(data["type"]) + "." + str(type)], [str(value["value"])]) - continue - if(value["type"] == "float"): - type[0]([str(data["type"]) + "." + str(type[1])], [str(value["value"])]) - continue - if(value["type"] == "float3"): - type[0]([str(data["type"]) + "." + str(type[1])], [str(value["value"][0][0]), str(value["value"][0][1]), str(value["value"][0][2])]) - continue - if(value["type"] == "bool"): - if(value["value"]): - type[0]([str(data["type"]) + "." + str(type[1])], ["1"]) - continue - if(value["type"] == "TdataCompound"): - type(data["type"], value["value"]) self.attributeMaterials() @@ -171,7 +207,7 @@ def attributeMaterials(self): return #print(mat) for object in self.jsonObjects: - print self.material + #print self.material ix.cmds.SetValues([str(self.object) + "/" + str(object) + ".materials[0]"], [str(self.material.path)]) @@ -210,7 +246,7 @@ def __init__(self, name, typeM, typeC, data): def createNode(self): - node = ix.cmds.CreateObject(str(self.name) + "_tx", str(self.typeC), "Global", path) + node = ix.cmds.CreateObject(str(self.name), str(self.typeC), "Global", path) return node @@ -299,20 +335,38 @@ def addAllCurves(node, data): # print(node) # print(data) # print(str(node) + ".output") - ix.cmds.RemoveCurveValue([str(node) + ".output"], [2, 1, 2, 2, 1, 2, 2, 1, 2, 2, 1, 2]) - for point in data: -# print(point) - ix.cmds.AddCurveValue([str(node) + ".output"], [ - 1.0, - 0.0, point[0], point[1], - 1.0, - 0.0, point[0], point[1], - 1.0, - 0.0, point[0], point[1], - 1.0, - 0.0, point[0], point[1], - ]) + try: + ix.cmds.RemoveCurveValue([str(node) + ".output"], [2, 1, 2, 2, 1, 2, 2, 1, 2, 2, 1, 2]) + for point in data: + # print(point) + ix.cmds.AddCurveValue([str(node) + ".output"], [ + 1.0, + 0.0, point[0], point[1], + 1.0, + 0.0, point[0], point[1], + 1.0, + 0.0, point[0], point[1], + 1.0, + 0.0, point[0], point[1], + ]) + except: + pass + +def triplanarScaleToFile(node, data): + #print("triplanarScaleToFile") + #print(node.path) + if node.input: + + #print(node.input[0].path) + #print(data) + ix.cmds.SetValues([str(node.input[0].path) + ".uv_scale"], [str(data[0][0]), str(data[0][1]), str(data[0][2])]) + +def setFileColorSpace(node, data): + if(data == "Raw"): + ix.cmds.SetValues([str(node.path) + ".use_raw_data"], ["1"]) +def setFrequency(node, data): + ix.cmds.SetValues([str(node.path) + ".frequency"], [str(data / 100)]) @@ -320,9 +374,9 @@ def addAllCurves(node, data): "aiStandardSurface" : ["Material", "MaterialPhysicalStandard"], "remapColor" : ["Node", "TextureRemap"], "file" : ["Node", "TextureMapFile"], - "bump2d" : ["Node", "TextureNormalMap"], + "bump2d" : ["Node", {"key": "bumpInterp", "1": "TextureNormalMap", "default": "TextureBumpMap"}], "reverse" : ["Node", "TextureInvert"], - "remapValue" : ["Node", "TextureRescale"], + "remapValue" : ["Node", "TextureRemap"], "aiTriplanar" : ["Node", "TextureTriplanar"], "blendColors" : ["Node", "TextureBlend"], "remapHsv" : ["Node", "TextureColorModel"], @@ -349,12 +403,18 @@ def addAllCurves(node, data): "red": addCurveRed, "green": addCurveGreen, "blue": addCurveBlue, + "value": addAllCurves, "specularColor": [ix.cmds.SetValues, "specular_1_color"], "specularRoughness": [ix.cmds.SetValues, "specular_1_roughness"], "specularIOR": [ix.cmds.SetValues, "specular_1_index_of_refraction"], "baseColor": [ix.cmds.SetValues, "diffuse_front_color"], "base": [ix.cmds.SetValues, "diffuse_front_strength"], - "alphaIsLuminance": [ix.cmds.SetValues, "single_channel_file_behavior"] + "alphaIsLuminance": [ix.cmds.SetValues, "single_channel_file_behavior"], + "scale": {"aiTriplanar": triplanarScaleToFile, "aiNoise": [ix.cmds.SetValues, "uv_scale"]}, + "octaves": [ix.cmds.SetValues, "octaves"], + "lacunarity": [ix.cmds.SetValues, "lacunarity"], + "colorSpace": setFileColorSpace, + "frequency": setFrequency } diff --git a/pSphere1.json b/pSphere1.json index 1458afb..71e74a0 100644 --- a/pSphere1.json +++ b/pSphere1.json @@ -1,8724 +1,1141 @@ { - "pasted__aiUtility1SG1": { - "connections": [], - "nodes": { - "lambert1": { - "data": { - "outColorR": { - "type": "float", - "value": 1.7000000476837158 - }, - "outColor": { - "type": "float3", - "value": [ - [ - 1.7000000476837158, - 1.7000000476837158, - 1.7000000476837158 - ] - ] - }, - "outColorB": { - "type": "float", - "value": 1.7000000476837158 - }, - "outColorG": { - "type": "float", - "value": 1.7000000476837158 - } - }, - "type": "lambert" - } - } - }, - "initialShadingGroup": { - "connections": [], - "nodes": { - "lambert1": { - "data": { - "outColorR": { - "type": "float", - "value": 1.7000000476837158 - }, - "outColor": { - "type": "float3", - "value": [ - [ - 1.7000000476837158, - 1.7000000476837158, - 1.7000000476837158 - ] - ] - }, - "outColorB": { - "type": "float", - "value": 1.7000000476837158 - }, - "outColorG": { - "type": "float", - "value": 1.7000000476837158 - } - }, - "type": "lambert" - } - } - }, - "aiStandardSurface8SG": { + "aiStandardSurface1SG": { "connections": [ { - "to": "SH_Zinc", + "to": "CONCRETE", "toAttribute": "normalCamera", - "toAttributeComplete": "SH_Zinc.normalCamera", - "from": "aiTriplanar3", - "fromAttribute": "aiTriplanar3.outColor" + "toAttributeComplete": "aiStandardSurface.normalCamera", + "from": "bump2d1", + "fromAttribute": "bump2d1.outNormal" }, { - "to": "SH_Zinc", + "to": "CONCRETE", "toAttribute": "normalCameraX", - "toAttributeComplete": "SH_Zinc.normalCameraX", - "from": "aiTriplanar3", - "fromAttribute": "aiTriplanar3.outColor" + "toAttributeComplete": "aiStandardSurface.normalCameraX", + "from": "bump2d1", + "fromAttribute": "bump2d1.outNormal" }, { - "to": "SH_Zinc", + "to": "CONCRETE", "toAttribute": "normalCameraY", - "toAttributeComplete": "SH_Zinc.normalCameraY", - "from": "aiTriplanar3", - "fromAttribute": "aiTriplanar3.outColor" + "toAttributeComplete": "aiStandardSurface.normalCameraY", + "from": "bump2d1", + "fromAttribute": "bump2d1.outNormal" }, { - "to": "SH_Zinc", + "to": "CONCRETE", "toAttribute": "normalCameraZ", - "toAttributeComplete": "SH_Zinc.normalCameraZ", - "from": "aiTriplanar3", - "fromAttribute": "aiTriplanar3.outColor" + "toAttributeComplete": "aiStandardSurface.normalCameraZ", + "from": "bump2d1", + "fromAttribute": "bump2d1.outNormal" }, { - "to": "SH_Zinc", + "to": "CONCRETE", "toAttribute": "baseColor", - "toAttributeComplete": "SH_Zinc.baseColor", - "from": "aiTriplanar1", - "fromAttribute": "aiTriplanar1.outColor" + "toAttributeComplete": "aiStandardSurface.baseColor", + "from": "remapColor1", + "fromAttribute": "remapColor1.outColor" }, { - "to": "SH_Zinc", + "to": "CONCRETE", "toAttribute": "baseColorR", - "toAttributeComplete": "SH_Zinc.baseColorR", - "from": "aiTriplanar1", - "fromAttribute": "aiTriplanar1.outColor" - }, - { - "to": "SH_Zinc", - "toAttribute": "baseColorG", - "toAttributeComplete": "SH_Zinc.baseColorG", - "from": "aiTriplanar1", - "fromAttribute": "aiTriplanar1.outColor" - }, - { - "to": "SH_Zinc", - "toAttribute": "baseColorB", - "toAttributeComplete": "SH_Zinc.baseColorB", - "from": "aiTriplanar1", - "fromAttribute": "aiTriplanar1.outColor" - }, - { - "to": "SH_Zinc", - "toAttribute": "specularRoughness", - "toAttributeComplete": "SH_Zinc.specularRoughness", - "from": "aiTriplanar2", - "fromAttribute": "aiTriplanar2.outColorR" - }, - { - "to": "aiTriplanar1", - "toAttribute": "input", - "toAttributeComplete": "aiTriplanar1.input", - "from": "remapHsv5", - "fromAttribute": "remapHsv5.outColor" - }, - { - "to": "aiTriplanar1", - "toAttribute": "inputR", - "toAttributeComplete": "aiTriplanar1.inputR", - "from": "remapHsv5", - "fromAttribute": "remapHsv5.outColor" - }, - { - "to": "aiTriplanar1", - "toAttribute": "inputG", - "toAttributeComplete": "aiTriplanar1.inputG", - "from": "remapHsv5", - "fromAttribute": "remapHsv5.outColor" - }, - { - "to": "aiTriplanar1", - "toAttribute": "inputB", - "toAttributeComplete": "aiTriplanar1.inputB", - "from": "remapHsv5", - "fromAttribute": "remapHsv5.outColor" - }, - { - "to": "remapHsv5", - "toAttribute": "color", - "toAttributeComplete": "remapHsv5.color", + "toAttributeComplete": "aiStandardSurface.baseColorR", "from": "remapColor1", "fromAttribute": "remapColor1.outColor" }, { - "to": "remapHsv5", - "toAttribute": "colorR", - "toAttributeComplete": "remapHsv5.colorR", + "to": "CONCRETE", + "toAttribute": "baseColorG", + "toAttributeComplete": "aiStandardSurface.baseColorG", "from": "remapColor1", "fromAttribute": "remapColor1.outColor" }, { - "to": "remapHsv5", - "toAttribute": "colorG", - "toAttributeComplete": "remapHsv5.colorG", + "to": "CONCRETE", + "toAttribute": "baseColorB", + "toAttributeComplete": "aiStandardSurface.baseColorB", "from": "remapColor1", "fromAttribute": "remapColor1.outColor" }, { - "to": "remapHsv5", - "toAttribute": "colorB", - "toAttributeComplete": "remapHsv5.colorB", - "from": "remapColor1", - "fromAttribute": "remapColor1.outColor" + "to": "CONCRETE", + "toAttribute": "specularRoughness", + "toAttributeComplete": "aiStandardSurface.specularRoughness", + "from": "reverse1", + "fromAttribute": "reverse1.outputX" }, { "to": "remapColor1", "toAttribute": "color", - "toAttributeComplete": "remapColor1.color", - "from": "blendColors4", - "fromAttribute": "blendColors4.output" + "toAttributeComplete": "remapColor.color", + "from": "file1", + "fromAttribute": "file1.outColor" }, { "to": "remapColor1", "toAttribute": "colorR", - "toAttributeComplete": "remapColor1.colorR", - "from": "blendColors4", - "fromAttribute": "blendColors4.output" + "toAttributeComplete": "remapColor.colorR", + "from": "file1", + "fromAttribute": "file1.outColor" }, { "to": "remapColor1", "toAttribute": "colorG", - "toAttributeComplete": "remapColor1.colorG", - "from": "blendColors4", - "fromAttribute": "blendColors4.output" + "toAttributeComplete": "remapColor.colorG", + "from": "file1", + "fromAttribute": "file1.outColor" }, { "to": "remapColor1", "toAttribute": "colorB", - "toAttributeComplete": "remapColor1.colorB", - "from": "blendColors4", - "fromAttribute": "blendColors4.output" - }, - { - "to": "blendColors4", - "toAttribute": "blender", - "toAttributeComplete": "blendColors4.blender", - "from": "remapValue7", - "fromAttribute": "remapValue7.outValue" - }, - { - "to": "blendColors4", - "toAttribute": "color1", - "toAttributeComplete": "blendColors4.color1", - "from": "blendColors3", - "fromAttribute": "blendColors3.output" - }, - { - "to": "blendColors4", - "toAttribute": "color1R", - "toAttributeComplete": "blendColors4.color1R", - "from": "blendColors3", - "fromAttribute": "blendColors3.output" - }, - { - "to": "blendColors4", - "toAttribute": "color1G", - "toAttributeComplete": "blendColors4.color1G", - "from": "blendColors3", - "fromAttribute": "blendColors3.output" - }, - { - "to": "blendColors4", - "toAttribute": "color1B", - "toAttributeComplete": "blendColors4.color1B", - "from": "blendColors3", - "fromAttribute": "blendColors3.output" - }, - { - "to": "blendColors4", - "toAttribute": "color2", - "toAttributeComplete": "blendColors4.color2", - "from": "remapHsv6", - "fromAttribute": "remapHsv6.outColor" - }, - { - "to": "blendColors4", - "toAttribute": "color2R", - "toAttributeComplete": "blendColors4.color2R", - "from": "remapHsv6", - "fromAttribute": "remapHsv6.outColor" - }, - { - "to": "blendColors4", - "toAttribute": "color2G", - "toAttributeComplete": "blendColors4.color2G", - "from": "remapHsv6", - "fromAttribute": "remapHsv6.outColor" - }, - { - "to": "blendColors4", - "toAttribute": "color2B", - "toAttributeComplete": "blendColors4.color2B", - "from": "remapHsv6", - "fromAttribute": "remapHsv6.outColor" - }, - { - "to": "blendColors3", - "toAttribute": "blender", - "toAttributeComplete": "blendColors3.blender", - "from": "aiNoise2", - "fromAttribute": "aiNoise2.outColorR" - }, - { - "to": "blendColors3", - "toAttribute": "color1", - "toAttributeComplete": "blendColors3.color1", - "from": "remapHsv4", - "fromAttribute": "remapHsv4.outColor" - }, - { - "to": "blendColors3", - "toAttribute": "color1R", - "toAttributeComplete": "blendColors3.color1R", - "from": "remapHsv4", - "fromAttribute": "remapHsv4.outColor" - }, - { - "to": "blendColors3", - "toAttribute": "color1G", - "toAttributeComplete": "blendColors3.color1G", - "from": "remapHsv4", - "fromAttribute": "remapHsv4.outColor" - }, - { - "to": "blendColors3", - "toAttribute": "color1B", - "toAttributeComplete": "blendColors3.color1B", - "from": "remapHsv4", - "fromAttribute": "remapHsv4.outColor" - }, - { - "to": "blendColors3", - "toAttribute": "color2", - "toAttributeComplete": "blendColors3.color2", - "from": "remapHsv3", - "fromAttribute": "remapHsv3.outColor" - }, - { - "to": "blendColors3", - "toAttribute": "color2R", - "toAttributeComplete": "blendColors3.color2R", - "from": "remapHsv3", - "fromAttribute": "remapHsv3.outColor" - }, - { - "to": "blendColors3", - "toAttribute": "color2G", - "toAttributeComplete": "blendColors3.color2G", - "from": "remapHsv3", - "fromAttribute": "remapHsv3.outColor" - }, - { - "to": "blendColors3", - "toAttribute": "color2B", - "toAttributeComplete": "blendColors3.color2B", - "from": "remapHsv3", - "fromAttribute": "remapHsv3.outColor" - }, - { - "to": "remapHsv4", - "toAttribute": "color", - "toAttributeComplete": "remapHsv4.color", - "from": "Zinc_01_1", - "fromAttribute": "Zinc_01_1.outColor" - }, - { - "to": "remapHsv4", - "toAttribute": "colorR", - "toAttributeComplete": "remapHsv4.colorR", - "from": "Zinc_01_1", - "fromAttribute": "Zinc_01_1.outColor" - }, - { - "to": "remapHsv4", - "toAttribute": "colorG", - "toAttributeComplete": "remapHsv4.colorG", - "from": "Zinc_01_1", - "fromAttribute": "Zinc_01_1.outColor" - }, - { - "to": "remapHsv4", - "toAttribute": "colorB", - "toAttributeComplete": "remapHsv4.colorB", - "from": "Zinc_01_1", - "fromAttribute": "Zinc_01_1.outColor" + "toAttributeComplete": "remapColor.colorB", + "from": "file1", + "fromAttribute": "file1.outColor" }, { - "to": "Zinc_01_1", + "to": "file1", "toAttribute": "uvCoord", - "toAttributeComplete": "Zinc_01_1.uvCoord", - "from": "place2dTexture46", - "fromAttribute": "place2dTexture46.outUV" + "toAttributeComplete": "file.uvCoord", + "from": "place2dTexture1", + "fromAttribute": "place2dTexture1.outUV" }, { - "to": "Zinc_01_1", + "to": "file1", "toAttribute": "uCoord", - "toAttributeComplete": "Zinc_01_1.uCoord", - "from": "place2dTexture46", - "fromAttribute": "place2dTexture46.outUV" + "toAttributeComplete": "file.uCoord", + "from": "place2dTexture1", + "fromAttribute": "place2dTexture1.outUV" }, { - "to": "Zinc_01_1", + "to": "file1", "toAttribute": "vCoord", - "toAttributeComplete": "Zinc_01_1.vCoord", - "from": "place2dTexture46", - "fromAttribute": "place2dTexture46.outUV" + "toAttributeComplete": "file.vCoord", + "from": "place2dTexture1", + "fromAttribute": "place2dTexture1.outUV" }, { - "to": "Zinc_01_1", + "to": "file1", "toAttribute": "uvFilterSize", - "toAttributeComplete": "Zinc_01_1.uvFilterSize", - "from": "place2dTexture46", - "fromAttribute": "place2dTexture46.outUvFilterSize" + "toAttributeComplete": "file.uvFilterSize", + "from": "place2dTexture1", + "fromAttribute": "place2dTexture1.outUvFilterSize" }, { - "to": "Zinc_01_1", + "to": "file1", "toAttribute": "uvFilterSizeX", - "toAttributeComplete": "Zinc_01_1.uvFilterSizeX", - "from": "place2dTexture46", - "fromAttribute": "place2dTexture46.outUvFilterSize" + "toAttributeComplete": "file.uvFilterSizeX", + "from": "place2dTexture1", + "fromAttribute": "place2dTexture1.outUvFilterSize" }, { - "to": "Zinc_01_1", + "to": "file1", "toAttribute": "uvFilterSizeY", - "toAttributeComplete": "Zinc_01_1.uvFilterSizeY", - "from": "place2dTexture46", - "fromAttribute": "place2dTexture46.outUvFilterSize" + "toAttributeComplete": "file.uvFilterSizeY", + "from": "place2dTexture1", + "fromAttribute": "place2dTexture1.outUvFilterSize" }, { - "to": "Zinc_01_1", + "to": "file1", "toAttribute": "coverage", - "toAttributeComplete": "Zinc_01_1.coverage", - "from": "place2dTexture46", - "fromAttribute": "place2dTexture46.coverage" + "toAttributeComplete": "file.coverage", + "from": "place2dTexture1", + "fromAttribute": "place2dTexture1.coverage" }, { - "to": "Zinc_01_1", + "to": "file1", "toAttribute": "coverageU", - "toAttributeComplete": "Zinc_01_1.coverageU", - "from": "place2dTexture46", - "fromAttribute": "place2dTexture46.coverage" + "toAttributeComplete": "file.coverageU", + "from": "place2dTexture1", + "fromAttribute": "place2dTexture1.coverage" }, { - "to": "Zinc_01_1", + "to": "file1", "toAttribute": "coverageV", - "toAttributeComplete": "Zinc_01_1.coverageV", - "from": "place2dTexture46", - "fromAttribute": "place2dTexture46.coverage" + "toAttributeComplete": "file.coverageV", + "from": "place2dTexture1", + "fromAttribute": "place2dTexture1.coverage" }, { - "to": "Zinc_01_1", + "to": "file1", "toAttribute": "translateFrame", - "toAttributeComplete": "Zinc_01_1.translateFrame", - "from": "place2dTexture46", - "fromAttribute": "place2dTexture46.translateFrame" + "toAttributeComplete": "file.translateFrame", + "from": "place2dTexture1", + "fromAttribute": "place2dTexture1.translateFrame" }, { - "to": "Zinc_01_1", + "to": "file1", "toAttribute": "translateFrameU", - "toAttributeComplete": "Zinc_01_1.translateFrameU", - "from": "place2dTexture46", - "fromAttribute": "place2dTexture46.translateFrame" + "toAttributeComplete": "file.translateFrameU", + "from": "place2dTexture1", + "fromAttribute": "place2dTexture1.translateFrame" }, { - "to": "Zinc_01_1", + "to": "file1", "toAttribute": "translateFrameV", - "toAttributeComplete": "Zinc_01_1.translateFrameV", - "from": "place2dTexture46", - "fromAttribute": "place2dTexture46.translateFrame" + "toAttributeComplete": "file.translateFrameV", + "from": "place2dTexture1", + "fromAttribute": "place2dTexture1.translateFrame" }, { - "to": "Zinc_01_1", + "to": "file1", "toAttribute": "rotateFrame", - "toAttributeComplete": "Zinc_01_1.rotateFrame", - "from": "place2dTexture46", - "fromAttribute": "place2dTexture46.rotateFrame" + "toAttributeComplete": "file.rotateFrame", + "from": "place2dTexture1", + "fromAttribute": "place2dTexture1.rotateFrame" }, { - "to": "Zinc_01_1", + "to": "file1", "toAttribute": "mirrorU", - "toAttributeComplete": "Zinc_01_1.mirrorU", - "from": "place2dTexture46", - "fromAttribute": "place2dTexture46.mirrorU" + "toAttributeComplete": "file.mirrorU", + "from": "place2dTexture1", + "fromAttribute": "place2dTexture1.mirrorU" }, { - "to": "Zinc_01_1", + "to": "file1", "toAttribute": "mirrorV", - "toAttributeComplete": "Zinc_01_1.mirrorV", - "from": "place2dTexture46", - "fromAttribute": "place2dTexture46.mirrorV" + "toAttributeComplete": "file.mirrorV", + "from": "place2dTexture1", + "fromAttribute": "place2dTexture1.mirrorV" }, { - "to": "Zinc_01_1", + "to": "file1", "toAttribute": "stagger", - "toAttributeComplete": "Zinc_01_1.stagger", - "from": "place2dTexture46", - "fromAttribute": "place2dTexture46.stagger" + "toAttributeComplete": "file.stagger", + "from": "place2dTexture1", + "fromAttribute": "place2dTexture1.stagger" }, { - "to": "Zinc_01_1", + "to": "file1", "toAttribute": "wrapU", - "toAttributeComplete": "Zinc_01_1.wrapU", - "from": "place2dTexture46", - "fromAttribute": "place2dTexture46.wrapU" + "toAttributeComplete": "file.wrapU", + "from": "place2dTexture1", + "fromAttribute": "place2dTexture1.wrapU" }, { - "to": "Zinc_01_1", + "to": "file1", "toAttribute": "wrapV", - "toAttributeComplete": "Zinc_01_1.wrapV", - "from": "place2dTexture46", - "fromAttribute": "place2dTexture46.wrapV" + "toAttributeComplete": "file.wrapV", + "from": "place2dTexture1", + "fromAttribute": "place2dTexture1.wrapV" }, { - "to": "Zinc_01_1", + "to": "file1", "toAttribute": "repeatUV", - "toAttributeComplete": "Zinc_01_1.repeatUV", - "from": "place2dTexture46", - "fromAttribute": "place2dTexture46.repeatUV" + "toAttributeComplete": "file.repeatUV", + "from": "place2dTexture1", + "fromAttribute": "place2dTexture1.repeatUV" }, { - "to": "Zinc_01_1", + "to": "file1", "toAttribute": "repeatU", - "toAttributeComplete": "Zinc_01_1.repeatU", - "from": "place2dTexture46", - "fromAttribute": "place2dTexture46.repeatUV" + "toAttributeComplete": "file.repeatU", + "from": "place2dTexture1", + "fromAttribute": "place2dTexture1.repeatUV" }, { - "to": "Zinc_01_1", + "to": "file1", "toAttribute": "repeatV", - "toAttributeComplete": "Zinc_01_1.repeatV", - "from": "place2dTexture46", - "fromAttribute": "place2dTexture46.repeatUV" + "toAttributeComplete": "file.repeatV", + "from": "place2dTexture1", + "fromAttribute": "place2dTexture1.repeatUV" }, { - "to": "Zinc_01_1", + "to": "file1", "toAttribute": "offset", - "toAttributeComplete": "Zinc_01_1.offset", - "from": "place2dTexture46", - "fromAttribute": "place2dTexture46.offset" + "toAttributeComplete": "file.offset", + "from": "place2dTexture1", + "fromAttribute": "place2dTexture1.offset" }, { - "to": "Zinc_01_1", + "to": "file1", "toAttribute": "offsetU", - "toAttributeComplete": "Zinc_01_1.offsetU", - "from": "place2dTexture46", - "fromAttribute": "place2dTexture46.offset" + "toAttributeComplete": "file.offsetU", + "from": "place2dTexture1", + "fromAttribute": "place2dTexture1.offset" }, { - "to": "Zinc_01_1", + "to": "file1", "toAttribute": "offsetV", - "toAttributeComplete": "Zinc_01_1.offsetV", - "from": "place2dTexture46", - "fromAttribute": "place2dTexture46.offset" + "toAttributeComplete": "file.offsetV", + "from": "place2dTexture1", + "fromAttribute": "place2dTexture1.offset" }, { - "to": "Zinc_01_1", + "to": "file1", "toAttribute": "rotateUV", - "toAttributeComplete": "Zinc_01_1.rotateUV", - "from": "place2dTexture46", - "fromAttribute": "place2dTexture46.rotateUV" + "toAttributeComplete": "file.rotateUV", + "from": "place2dTexture1", + "fromAttribute": "place2dTexture1.rotateUV" }, { - "to": "Zinc_01_1", + "to": "file1", "toAttribute": "noiseUV", - "toAttributeComplete": "Zinc_01_1.noiseUV", - "from": "place2dTexture46", - "fromAttribute": "place2dTexture46.noiseUV" + "toAttributeComplete": "file.noiseUV", + "from": "place2dTexture1", + "fromAttribute": "place2dTexture1.noiseUV" }, { - "to": "Zinc_01_1", + "to": "file1", "toAttribute": "noiseU", - "toAttributeComplete": "Zinc_01_1.noiseU", - "from": "place2dTexture46", - "fromAttribute": "place2dTexture46.noiseUV" + "toAttributeComplete": "file.noiseU", + "from": "place2dTexture1", + "fromAttribute": "place2dTexture1.noiseUV" }, { - "to": "Zinc_01_1", + "to": "file1", "toAttribute": "noiseV", - "toAttributeComplete": "Zinc_01_1.noiseV", - "from": "place2dTexture46", - "fromAttribute": "place2dTexture46.noiseUV" + "toAttributeComplete": "file.noiseV", + "from": "place2dTexture1", + "fromAttribute": "place2dTexture1.noiseUV" }, { - "to": "Zinc_01_1", + "to": "file1", "toAttribute": "vertexCameraOne", - "toAttributeComplete": "Zinc_01_1.vertexCameraOne", - "from": "place2dTexture46", - "fromAttribute": "place2dTexture46.vertexCameraOne" + "toAttributeComplete": "file.vertexCameraOne", + "from": "place2dTexture1", + "fromAttribute": "place2dTexture1.vertexCameraOne" }, { - "to": "Zinc_01_1", + "to": "file1", "toAttribute": "vertexCameraOneX", - "toAttributeComplete": "Zinc_01_1.vertexCameraOneX", - "from": "place2dTexture46", - "fromAttribute": "place2dTexture46.vertexCameraOne" + "toAttributeComplete": "file.vertexCameraOneX", + "from": "place2dTexture1", + "fromAttribute": "place2dTexture1.vertexCameraOne" }, { - "to": "Zinc_01_1", + "to": "file1", "toAttribute": "vertexCameraOneY", - "toAttributeComplete": "Zinc_01_1.vertexCameraOneY", - "from": "place2dTexture46", - "fromAttribute": "place2dTexture46.vertexCameraOne" + "toAttributeComplete": "file.vertexCameraOneY", + "from": "place2dTexture1", + "fromAttribute": "place2dTexture1.vertexCameraOne" }, { - "to": "Zinc_01_1", + "to": "file1", "toAttribute": "vertexCameraOneZ", - "toAttributeComplete": "Zinc_01_1.vertexCameraOneZ", - "from": "place2dTexture46", - "fromAttribute": "place2dTexture46.vertexCameraOne" + "toAttributeComplete": "file.vertexCameraOneZ", + "from": "place2dTexture1", + "fromAttribute": "place2dTexture1.vertexCameraOne" }, { - "to": "Zinc_01_1", + "to": "file1", "toAttribute": "vertexUvOne", - "toAttributeComplete": "Zinc_01_1.vertexUvOne", - "from": "place2dTexture46", - "fromAttribute": "place2dTexture46.vertexUvOne" + "toAttributeComplete": "file.vertexUvOne", + "from": "place2dTexture1", + "fromAttribute": "place2dTexture1.vertexUvOne" }, { - "to": "Zinc_01_1", + "to": "file1", "toAttribute": "vertexUvOneU", - "toAttributeComplete": "Zinc_01_1.vertexUvOneU", - "from": "place2dTexture46", - "fromAttribute": "place2dTexture46.vertexUvOne" + "toAttributeComplete": "file.vertexUvOneU", + "from": "place2dTexture1", + "fromAttribute": "place2dTexture1.vertexUvOne" }, { - "to": "Zinc_01_1", + "to": "file1", "toAttribute": "vertexUvOneV", - "toAttributeComplete": "Zinc_01_1.vertexUvOneV", - "from": "place2dTexture46", - "fromAttribute": "place2dTexture46.vertexUvOne" + "toAttributeComplete": "file.vertexUvOneV", + "from": "place2dTexture1", + "fromAttribute": "place2dTexture1.vertexUvOne" }, { - "to": "Zinc_01_1", + "to": "file1", "toAttribute": "vertexUvTwo", - "toAttributeComplete": "Zinc_01_1.vertexUvTwo", - "from": "place2dTexture46", - "fromAttribute": "place2dTexture46.vertexUvTwo" + "toAttributeComplete": "file.vertexUvTwo", + "from": "place2dTexture1", + "fromAttribute": "place2dTexture1.vertexUvTwo" }, { - "to": "Zinc_01_1", + "to": "file1", "toAttribute": "vertexUvTwoU", - "toAttributeComplete": "Zinc_01_1.vertexUvTwoU", - "from": "place2dTexture46", - "fromAttribute": "place2dTexture46.vertexUvTwo" + "toAttributeComplete": "file.vertexUvTwoU", + "from": "place2dTexture1", + "fromAttribute": "place2dTexture1.vertexUvTwo" }, { - "to": "Zinc_01_1", + "to": "file1", "toAttribute": "vertexUvTwoV", - "toAttributeComplete": "Zinc_01_1.vertexUvTwoV", - "from": "place2dTexture46", - "fromAttribute": "place2dTexture46.vertexUvTwo" + "toAttributeComplete": "file.vertexUvTwoV", + "from": "place2dTexture1", + "fromAttribute": "place2dTexture1.vertexUvTwo" }, { - "to": "Zinc_01_1", + "to": "file1", "toAttribute": "vertexUvThree", - "toAttributeComplete": "Zinc_01_1.vertexUvThree", - "from": "place2dTexture46", - "fromAttribute": "place2dTexture46.vertexUvThree" + "toAttributeComplete": "file.vertexUvThree", + "from": "place2dTexture1", + "fromAttribute": "place2dTexture1.vertexUvThree" }, { - "to": "Zinc_01_1", + "to": "file1", "toAttribute": "vertexUvThreeU", - "toAttributeComplete": "Zinc_01_1.vertexUvThreeU", - "from": "place2dTexture46", - "fromAttribute": "place2dTexture46.vertexUvThree" + "toAttributeComplete": "file.vertexUvThreeU", + "from": "place2dTexture1", + "fromAttribute": "place2dTexture1.vertexUvThree" }, { - "to": "Zinc_01_1", + "to": "file1", "toAttribute": "vertexUvThreeV", - "toAttributeComplete": "Zinc_01_1.vertexUvThreeV", - "from": "place2dTexture46", - "fromAttribute": "place2dTexture46.vertexUvThree" - }, - { - "to": "remapHsv3", - "toAttribute": "color", - "toAttributeComplete": "remapHsv3.color", - "from": "Zinc_02_1", - "fromAttribute": "Zinc_02_1.outColor" - }, - { - "to": "remapHsv3", - "toAttribute": "colorR", - "toAttributeComplete": "remapHsv3.colorR", - "from": "Zinc_02_1", - "fromAttribute": "Zinc_02_1.outColor" - }, - { - "to": "remapHsv3", - "toAttribute": "colorG", - "toAttributeComplete": "remapHsv3.colorG", - "from": "Zinc_02_1", - "fromAttribute": "Zinc_02_1.outColor" + "toAttributeComplete": "file.vertexUvThreeV", + "from": "place2dTexture1", + "fromAttribute": "place2dTexture1.vertexUvThree" }, { - "to": "remapHsv3", - "toAttribute": "colorB", - "toAttributeComplete": "remapHsv3.colorB", - "from": "Zinc_02_1", - "fromAttribute": "Zinc_02_1.outColor" + "to": "reverse1", + "toAttribute": "inputX", + "toAttributeComplete": "reverse.inputX", + "from": "file2", + "fromAttribute": "file2.outAlpha" }, { - "to": "Zinc_02_1", + "to": "file2", "toAttribute": "uvCoord", - "toAttributeComplete": "Zinc_02_1.uvCoord", - "from": "place2dTexture47", - "fromAttribute": "place2dTexture47.outUV" + "toAttributeComplete": "file.uvCoord", + "from": "place2dTexture2", + "fromAttribute": "place2dTexture2.outUV" }, { - "to": "Zinc_02_1", + "to": "file2", "toAttribute": "uCoord", - "toAttributeComplete": "Zinc_02_1.uCoord", - "from": "place2dTexture47", - "fromAttribute": "place2dTexture47.outUV" + "toAttributeComplete": "file.uCoord", + "from": "place2dTexture2", + "fromAttribute": "place2dTexture2.outUV" }, { - "to": "Zinc_02_1", + "to": "file2", "toAttribute": "vCoord", - "toAttributeComplete": "Zinc_02_1.vCoord", - "from": "place2dTexture47", - "fromAttribute": "place2dTexture47.outUV" + "toAttributeComplete": "file.vCoord", + "from": "place2dTexture2", + "fromAttribute": "place2dTexture2.outUV" }, { - "to": "Zinc_02_1", + "to": "file2", "toAttribute": "uvFilterSize", - "toAttributeComplete": "Zinc_02_1.uvFilterSize", - "from": "place2dTexture47", - "fromAttribute": "place2dTexture47.outUvFilterSize" + "toAttributeComplete": "file.uvFilterSize", + "from": "place2dTexture2", + "fromAttribute": "place2dTexture2.outUvFilterSize" }, { - "to": "Zinc_02_1", + "to": "file2", "toAttribute": "uvFilterSizeX", - "toAttributeComplete": "Zinc_02_1.uvFilterSizeX", - "from": "place2dTexture47", - "fromAttribute": "place2dTexture47.outUvFilterSize" + "toAttributeComplete": "file.uvFilterSizeX", + "from": "place2dTexture2", + "fromAttribute": "place2dTexture2.outUvFilterSize" }, { - "to": "Zinc_02_1", + "to": "file2", "toAttribute": "uvFilterSizeY", - "toAttributeComplete": "Zinc_02_1.uvFilterSizeY", - "from": "place2dTexture47", - "fromAttribute": "place2dTexture47.outUvFilterSize" + "toAttributeComplete": "file.uvFilterSizeY", + "from": "place2dTexture2", + "fromAttribute": "place2dTexture2.outUvFilterSize" }, { - "to": "Zinc_02_1", + "to": "file2", "toAttribute": "coverage", - "toAttributeComplete": "Zinc_02_1.coverage", - "from": "place2dTexture47", - "fromAttribute": "place2dTexture47.coverage" + "toAttributeComplete": "file.coverage", + "from": "place2dTexture2", + "fromAttribute": "place2dTexture2.coverage" }, { - "to": "Zinc_02_1", + "to": "file2", "toAttribute": "coverageU", - "toAttributeComplete": "Zinc_02_1.coverageU", - "from": "place2dTexture47", - "fromAttribute": "place2dTexture47.coverage" + "toAttributeComplete": "file.coverageU", + "from": "place2dTexture2", + "fromAttribute": "place2dTexture2.coverage" }, { - "to": "Zinc_02_1", + "to": "file2", "toAttribute": "coverageV", - "toAttributeComplete": "Zinc_02_1.coverageV", - "from": "place2dTexture47", - "fromAttribute": "place2dTexture47.coverage" + "toAttributeComplete": "file.coverageV", + "from": "place2dTexture2", + "fromAttribute": "place2dTexture2.coverage" }, { - "to": "Zinc_02_1", + "to": "file2", "toAttribute": "translateFrame", - "toAttributeComplete": "Zinc_02_1.translateFrame", - "from": "place2dTexture47", - "fromAttribute": "place2dTexture47.translateFrame" + "toAttributeComplete": "file.translateFrame", + "from": "place2dTexture2", + "fromAttribute": "place2dTexture2.translateFrame" }, { - "to": "Zinc_02_1", + "to": "file2", "toAttribute": "translateFrameU", - "toAttributeComplete": "Zinc_02_1.translateFrameU", - "from": "place2dTexture47", - "fromAttribute": "place2dTexture47.translateFrame" + "toAttributeComplete": "file.translateFrameU", + "from": "place2dTexture2", + "fromAttribute": "place2dTexture2.translateFrame" }, { - "to": "Zinc_02_1", + "to": "file2", "toAttribute": "translateFrameV", - "toAttributeComplete": "Zinc_02_1.translateFrameV", - "from": "place2dTexture47", - "fromAttribute": "place2dTexture47.translateFrame" + "toAttributeComplete": "file.translateFrameV", + "from": "place2dTexture2", + "fromAttribute": "place2dTexture2.translateFrame" }, { - "to": "Zinc_02_1", + "to": "file2", "toAttribute": "rotateFrame", - "toAttributeComplete": "Zinc_02_1.rotateFrame", - "from": "place2dTexture47", - "fromAttribute": "place2dTexture47.rotateFrame" + "toAttributeComplete": "file.rotateFrame", + "from": "place2dTexture2", + "fromAttribute": "place2dTexture2.rotateFrame" }, { - "to": "Zinc_02_1", + "to": "file2", "toAttribute": "mirrorU", - "toAttributeComplete": "Zinc_02_1.mirrorU", - "from": "place2dTexture47", - "fromAttribute": "place2dTexture47.mirrorU" + "toAttributeComplete": "file.mirrorU", + "from": "place2dTexture2", + "fromAttribute": "place2dTexture2.mirrorU" }, { - "to": "Zinc_02_1", + "to": "file2", "toAttribute": "mirrorV", - "toAttributeComplete": "Zinc_02_1.mirrorV", - "from": "place2dTexture47", - "fromAttribute": "place2dTexture47.mirrorV" + "toAttributeComplete": "file.mirrorV", + "from": "place2dTexture2", + "fromAttribute": "place2dTexture2.mirrorV" }, { - "to": "Zinc_02_1", + "to": "file2", "toAttribute": "stagger", - "toAttributeComplete": "Zinc_02_1.stagger", - "from": "place2dTexture47", - "fromAttribute": "place2dTexture47.stagger" + "toAttributeComplete": "file.stagger", + "from": "place2dTexture2", + "fromAttribute": "place2dTexture2.stagger" }, { - "to": "Zinc_02_1", + "to": "file2", "toAttribute": "wrapU", - "toAttributeComplete": "Zinc_02_1.wrapU", - "from": "place2dTexture47", - "fromAttribute": "place2dTexture47.wrapU" + "toAttributeComplete": "file.wrapU", + "from": "place2dTexture2", + "fromAttribute": "place2dTexture2.wrapU" }, { - "to": "Zinc_02_1", + "to": "file2", "toAttribute": "wrapV", - "toAttributeComplete": "Zinc_02_1.wrapV", - "from": "place2dTexture47", - "fromAttribute": "place2dTexture47.wrapV" + "toAttributeComplete": "file.wrapV", + "from": "place2dTexture2", + "fromAttribute": "place2dTexture2.wrapV" }, { - "to": "Zinc_02_1", + "to": "file2", "toAttribute": "repeatUV", - "toAttributeComplete": "Zinc_02_1.repeatUV", - "from": "place2dTexture47", - "fromAttribute": "place2dTexture47.repeatUV" + "toAttributeComplete": "file.repeatUV", + "from": "place2dTexture2", + "fromAttribute": "place2dTexture2.repeatUV" }, { - "to": "Zinc_02_1", + "to": "file2", "toAttribute": "repeatU", - "toAttributeComplete": "Zinc_02_1.repeatU", - "from": "place2dTexture47", - "fromAttribute": "place2dTexture47.repeatUV" + "toAttributeComplete": "file.repeatU", + "from": "place2dTexture2", + "fromAttribute": "place2dTexture2.repeatUV" }, { - "to": "Zinc_02_1", + "to": "file2", "toAttribute": "repeatV", - "toAttributeComplete": "Zinc_02_1.repeatV", - "from": "place2dTexture47", - "fromAttribute": "place2dTexture47.repeatUV" + "toAttributeComplete": "file.repeatV", + "from": "place2dTexture2", + "fromAttribute": "place2dTexture2.repeatUV" }, { - "to": "Zinc_02_1", + "to": "file2", "toAttribute": "offset", - "toAttributeComplete": "Zinc_02_1.offset", - "from": "place2dTexture47", - "fromAttribute": "place2dTexture47.offset" + "toAttributeComplete": "file.offset", + "from": "place2dTexture2", + "fromAttribute": "place2dTexture2.offset" }, { - "to": "Zinc_02_1", + "to": "file2", "toAttribute": "offsetU", - "toAttributeComplete": "Zinc_02_1.offsetU", - "from": "place2dTexture47", - "fromAttribute": "place2dTexture47.offset" + "toAttributeComplete": "file.offsetU", + "from": "place2dTexture2", + "fromAttribute": "place2dTexture2.offset" }, { - "to": "Zinc_02_1", + "to": "file2", "toAttribute": "offsetV", - "toAttributeComplete": "Zinc_02_1.offsetV", - "from": "place2dTexture47", - "fromAttribute": "place2dTexture47.offset" + "toAttributeComplete": "file.offsetV", + "from": "place2dTexture2", + "fromAttribute": "place2dTexture2.offset" }, { - "to": "Zinc_02_1", + "to": "file2", "toAttribute": "rotateUV", - "toAttributeComplete": "Zinc_02_1.rotateUV", - "from": "place2dTexture47", - "fromAttribute": "place2dTexture47.rotateUV" + "toAttributeComplete": "file.rotateUV", + "from": "place2dTexture2", + "fromAttribute": "place2dTexture2.rotateUV" }, { - "to": "Zinc_02_1", + "to": "file2", "toAttribute": "noiseUV", - "toAttributeComplete": "Zinc_02_1.noiseUV", - "from": "place2dTexture47", - "fromAttribute": "place2dTexture47.noiseUV" + "toAttributeComplete": "file.noiseUV", + "from": "place2dTexture2", + "fromAttribute": "place2dTexture2.noiseUV" }, { - "to": "Zinc_02_1", + "to": "file2", "toAttribute": "noiseU", - "toAttributeComplete": "Zinc_02_1.noiseU", - "from": "place2dTexture47", - "fromAttribute": "place2dTexture47.noiseUV" + "toAttributeComplete": "file.noiseU", + "from": "place2dTexture2", + "fromAttribute": "place2dTexture2.noiseUV" }, { - "to": "Zinc_02_1", + "to": "file2", "toAttribute": "noiseV", - "toAttributeComplete": "Zinc_02_1.noiseV", - "from": "place2dTexture47", - "fromAttribute": "place2dTexture47.noiseUV" + "toAttributeComplete": "file.noiseV", + "from": "place2dTexture2", + "fromAttribute": "place2dTexture2.noiseUV" }, { - "to": "Zinc_02_1", + "to": "file2", "toAttribute": "vertexCameraOne", - "toAttributeComplete": "Zinc_02_1.vertexCameraOne", - "from": "place2dTexture47", - "fromAttribute": "place2dTexture47.vertexCameraOne" + "toAttributeComplete": "file.vertexCameraOne", + "from": "place2dTexture2", + "fromAttribute": "place2dTexture2.vertexCameraOne" }, { - "to": "Zinc_02_1", + "to": "file2", "toAttribute": "vertexCameraOneX", - "toAttributeComplete": "Zinc_02_1.vertexCameraOneX", - "from": "place2dTexture47", - "fromAttribute": "place2dTexture47.vertexCameraOne" + "toAttributeComplete": "file.vertexCameraOneX", + "from": "place2dTexture2", + "fromAttribute": "place2dTexture2.vertexCameraOne" }, { - "to": "Zinc_02_1", + "to": "file2", "toAttribute": "vertexCameraOneY", - "toAttributeComplete": "Zinc_02_1.vertexCameraOneY", - "from": "place2dTexture47", - "fromAttribute": "place2dTexture47.vertexCameraOne" + "toAttributeComplete": "file.vertexCameraOneY", + "from": "place2dTexture2", + "fromAttribute": "place2dTexture2.vertexCameraOne" }, { - "to": "Zinc_02_1", + "to": "file2", "toAttribute": "vertexCameraOneZ", - "toAttributeComplete": "Zinc_02_1.vertexCameraOneZ", - "from": "place2dTexture47", - "fromAttribute": "place2dTexture47.vertexCameraOne" + "toAttributeComplete": "file.vertexCameraOneZ", + "from": "place2dTexture2", + "fromAttribute": "place2dTexture2.vertexCameraOne" }, { - "to": "Zinc_02_1", + "to": "file2", "toAttribute": "vertexUvOne", - "toAttributeComplete": "Zinc_02_1.vertexUvOne", - "from": "place2dTexture47", - "fromAttribute": "place2dTexture47.vertexUvOne" + "toAttributeComplete": "file.vertexUvOne", + "from": "place2dTexture2", + "fromAttribute": "place2dTexture2.vertexUvOne" }, { - "to": "Zinc_02_1", + "to": "file2", "toAttribute": "vertexUvOneU", - "toAttributeComplete": "Zinc_02_1.vertexUvOneU", - "from": "place2dTexture47", - "fromAttribute": "place2dTexture47.vertexUvOne" + "toAttributeComplete": "file.vertexUvOneU", + "from": "place2dTexture2", + "fromAttribute": "place2dTexture2.vertexUvOne" }, { - "to": "Zinc_02_1", + "to": "file2", "toAttribute": "vertexUvOneV", - "toAttributeComplete": "Zinc_02_1.vertexUvOneV", - "from": "place2dTexture47", - "fromAttribute": "place2dTexture47.vertexUvOne" + "toAttributeComplete": "file.vertexUvOneV", + "from": "place2dTexture2", + "fromAttribute": "place2dTexture2.vertexUvOne" }, { - "to": "Zinc_02_1", + "to": "file2", "toAttribute": "vertexUvTwo", - "toAttributeComplete": "Zinc_02_1.vertexUvTwo", - "from": "place2dTexture47", - "fromAttribute": "place2dTexture47.vertexUvTwo" + "toAttributeComplete": "file.vertexUvTwo", + "from": "place2dTexture2", + "fromAttribute": "place2dTexture2.vertexUvTwo" }, { - "to": "Zinc_02_1", + "to": "file2", "toAttribute": "vertexUvTwoU", - "toAttributeComplete": "Zinc_02_1.vertexUvTwoU", - "from": "place2dTexture47", - "fromAttribute": "place2dTexture47.vertexUvTwo" + "toAttributeComplete": "file.vertexUvTwoU", + "from": "place2dTexture2", + "fromAttribute": "place2dTexture2.vertexUvTwo" }, { - "to": "Zinc_02_1", + "to": "file2", "toAttribute": "vertexUvTwoV", - "toAttributeComplete": "Zinc_02_1.vertexUvTwoV", - "from": "place2dTexture47", - "fromAttribute": "place2dTexture47.vertexUvTwo" + "toAttributeComplete": "file.vertexUvTwoV", + "from": "place2dTexture2", + "fromAttribute": "place2dTexture2.vertexUvTwo" }, { - "to": "Zinc_02_1", + "to": "file2", "toAttribute": "vertexUvThree", - "toAttributeComplete": "Zinc_02_1.vertexUvThree", - "from": "place2dTexture47", - "fromAttribute": "place2dTexture47.vertexUvThree" + "toAttributeComplete": "file.vertexUvThree", + "from": "place2dTexture2", + "fromAttribute": "place2dTexture2.vertexUvThree" }, { - "to": "Zinc_02_1", + "to": "file2", "toAttribute": "vertexUvThreeU", - "toAttributeComplete": "Zinc_02_1.vertexUvThreeU", - "from": "place2dTexture47", - "fromAttribute": "place2dTexture47.vertexUvThree" + "toAttributeComplete": "file.vertexUvThreeU", + "from": "place2dTexture2", + "fromAttribute": "place2dTexture2.vertexUvThree" }, { - "to": "Zinc_02_1", + "to": "file2", "toAttribute": "vertexUvThreeV", - "toAttributeComplete": "Zinc_02_1.vertexUvThreeV", - "from": "place2dTexture47", - "fromAttribute": "place2dTexture47.vertexUvThree" - }, - { - "to": "remapHsv6", - "toAttribute": "color", - "toAttributeComplete": "remapHsv6.color", - "from": "Zinc_03_1", - "fromAttribute": "Zinc_03_1.outColor" - }, - { - "to": "remapHsv6", - "toAttribute": "colorR", - "toAttributeComplete": "remapHsv6.colorR", - "from": "Zinc_03_1", - "fromAttribute": "Zinc_03_1.outColor" + "toAttributeComplete": "file.vertexUvThreeV", + "from": "place2dTexture2", + "fromAttribute": "place2dTexture2.vertexUvThree" }, { - "to": "remapHsv6", - "toAttribute": "colorG", - "toAttributeComplete": "remapHsv6.colorG", - "from": "Zinc_03_1", - "fromAttribute": "Zinc_03_1.outColor" - }, - { - "to": "remapHsv6", - "toAttribute": "colorB", - "toAttributeComplete": "remapHsv6.colorB", - "from": "Zinc_03_1", - "fromAttribute": "Zinc_03_1.outColor" + "to": "bump2d1", + "toAttribute": "bumpValue", + "toAttributeComplete": "bump2d.bumpValue", + "from": "file3", + "fromAttribute": "file3.outAlpha" }, { - "to": "Zinc_03_1", + "to": "file3", "toAttribute": "uvCoord", - "toAttributeComplete": "Zinc_03_1.uvCoord", - "from": "place2dTexture52", - "fromAttribute": "place2dTexture52.outUV" + "toAttributeComplete": "file.uvCoord", + "from": "place2dTexture3", + "fromAttribute": "place2dTexture3.outUV" }, { - "to": "Zinc_03_1", + "to": "file3", "toAttribute": "uCoord", - "toAttributeComplete": "Zinc_03_1.uCoord", - "from": "place2dTexture52", - "fromAttribute": "place2dTexture52.outUV" + "toAttributeComplete": "file.uCoord", + "from": "place2dTexture3", + "fromAttribute": "place2dTexture3.outUV" }, { - "to": "Zinc_03_1", + "to": "file3", "toAttribute": "vCoord", - "toAttributeComplete": "Zinc_03_1.vCoord", - "from": "place2dTexture52", - "fromAttribute": "place2dTexture52.outUV" + "toAttributeComplete": "file.vCoord", + "from": "place2dTexture3", + "fromAttribute": "place2dTexture3.outUV" }, { - "to": "Zinc_03_1", + "to": "file3", "toAttribute": "uvFilterSize", - "toAttributeComplete": "Zinc_03_1.uvFilterSize", - "from": "place2dTexture52", - "fromAttribute": "place2dTexture52.outUvFilterSize" + "toAttributeComplete": "file.uvFilterSize", + "from": "place2dTexture3", + "fromAttribute": "place2dTexture3.outUvFilterSize" }, { - "to": "Zinc_03_1", + "to": "file3", "toAttribute": "uvFilterSizeX", - "toAttributeComplete": "Zinc_03_1.uvFilterSizeX", - "from": "place2dTexture52", - "fromAttribute": "place2dTexture52.outUvFilterSize" + "toAttributeComplete": "file.uvFilterSizeX", + "from": "place2dTexture3", + "fromAttribute": "place2dTexture3.outUvFilterSize" }, { - "to": "Zinc_03_1", + "to": "file3", "toAttribute": "uvFilterSizeY", - "toAttributeComplete": "Zinc_03_1.uvFilterSizeY", - "from": "place2dTexture52", - "fromAttribute": "place2dTexture52.outUvFilterSize" + "toAttributeComplete": "file.uvFilterSizeY", + "from": "place2dTexture3", + "fromAttribute": "place2dTexture3.outUvFilterSize" }, { - "to": "Zinc_03_1", + "to": "file3", "toAttribute": "coverage", - "toAttributeComplete": "Zinc_03_1.coverage", - "from": "place2dTexture52", - "fromAttribute": "place2dTexture52.coverage" + "toAttributeComplete": "file.coverage", + "from": "place2dTexture3", + "fromAttribute": "place2dTexture3.coverage" }, { - "to": "Zinc_03_1", + "to": "file3", "toAttribute": "coverageU", - "toAttributeComplete": "Zinc_03_1.coverageU", - "from": "place2dTexture52", - "fromAttribute": "place2dTexture52.coverage" + "toAttributeComplete": "file.coverageU", + "from": "place2dTexture3", + "fromAttribute": "place2dTexture3.coverage" }, { - "to": "Zinc_03_1", + "to": "file3", "toAttribute": "coverageV", - "toAttributeComplete": "Zinc_03_1.coverageV", - "from": "place2dTexture52", - "fromAttribute": "place2dTexture52.coverage" + "toAttributeComplete": "file.coverageV", + "from": "place2dTexture3", + "fromAttribute": "place2dTexture3.coverage" }, { - "to": "Zinc_03_1", + "to": "file3", "toAttribute": "translateFrame", - "toAttributeComplete": "Zinc_03_1.translateFrame", - "from": "place2dTexture52", - "fromAttribute": "place2dTexture52.translateFrame" + "toAttributeComplete": "file.translateFrame", + "from": "place2dTexture3", + "fromAttribute": "place2dTexture3.translateFrame" }, { - "to": "Zinc_03_1", + "to": "file3", "toAttribute": "translateFrameU", - "toAttributeComplete": "Zinc_03_1.translateFrameU", - "from": "place2dTexture52", - "fromAttribute": "place2dTexture52.translateFrame" + "toAttributeComplete": "file.translateFrameU", + "from": "place2dTexture3", + "fromAttribute": "place2dTexture3.translateFrame" }, { - "to": "Zinc_03_1", + "to": "file3", "toAttribute": "translateFrameV", - "toAttributeComplete": "Zinc_03_1.translateFrameV", - "from": "place2dTexture52", - "fromAttribute": "place2dTexture52.translateFrame" + "toAttributeComplete": "file.translateFrameV", + "from": "place2dTexture3", + "fromAttribute": "place2dTexture3.translateFrame" }, { - "to": "Zinc_03_1", + "to": "file3", "toAttribute": "rotateFrame", - "toAttributeComplete": "Zinc_03_1.rotateFrame", - "from": "place2dTexture52", - "fromAttribute": "place2dTexture52.rotateFrame" + "toAttributeComplete": "file.rotateFrame", + "from": "place2dTexture3", + "fromAttribute": "place2dTexture3.rotateFrame" }, { - "to": "Zinc_03_1", + "to": "file3", "toAttribute": "mirrorU", - "toAttributeComplete": "Zinc_03_1.mirrorU", - "from": "place2dTexture52", - "fromAttribute": "place2dTexture52.mirrorU" + "toAttributeComplete": "file.mirrorU", + "from": "place2dTexture3", + "fromAttribute": "place2dTexture3.mirrorU" }, { - "to": "Zinc_03_1", + "to": "file3", "toAttribute": "mirrorV", - "toAttributeComplete": "Zinc_03_1.mirrorV", - "from": "place2dTexture52", - "fromAttribute": "place2dTexture52.mirrorV" + "toAttributeComplete": "file.mirrorV", + "from": "place2dTexture3", + "fromAttribute": "place2dTexture3.mirrorV" }, { - "to": "Zinc_03_1", + "to": "file3", "toAttribute": "stagger", - "toAttributeComplete": "Zinc_03_1.stagger", - "from": "place2dTexture52", - "fromAttribute": "place2dTexture52.stagger" + "toAttributeComplete": "file.stagger", + "from": "place2dTexture3", + "fromAttribute": "place2dTexture3.stagger" }, { - "to": "Zinc_03_1", + "to": "file3", "toAttribute": "wrapU", - "toAttributeComplete": "Zinc_03_1.wrapU", - "from": "place2dTexture52", - "fromAttribute": "place2dTexture52.wrapU" + "toAttributeComplete": "file.wrapU", + "from": "place2dTexture3", + "fromAttribute": "place2dTexture3.wrapU" }, { - "to": "Zinc_03_1", + "to": "file3", "toAttribute": "wrapV", - "toAttributeComplete": "Zinc_03_1.wrapV", - "from": "place2dTexture52", - "fromAttribute": "place2dTexture52.wrapV" + "toAttributeComplete": "file.wrapV", + "from": "place2dTexture3", + "fromAttribute": "place2dTexture3.wrapV" }, { - "to": "Zinc_03_1", + "to": "file3", "toAttribute": "repeatUV", - "toAttributeComplete": "Zinc_03_1.repeatUV", - "from": "place2dTexture52", - "fromAttribute": "place2dTexture52.repeatUV" + "toAttributeComplete": "file.repeatUV", + "from": "place2dTexture3", + "fromAttribute": "place2dTexture3.repeatUV" }, { - "to": "Zinc_03_1", + "to": "file3", "toAttribute": "repeatU", - "toAttributeComplete": "Zinc_03_1.repeatU", - "from": "place2dTexture52", - "fromAttribute": "place2dTexture52.repeatUV" + "toAttributeComplete": "file.repeatU", + "from": "place2dTexture3", + "fromAttribute": "place2dTexture3.repeatUV" }, { - "to": "Zinc_03_1", + "to": "file3", "toAttribute": "repeatV", - "toAttributeComplete": "Zinc_03_1.repeatV", - "from": "place2dTexture52", - "fromAttribute": "place2dTexture52.repeatUV" + "toAttributeComplete": "file.repeatV", + "from": "place2dTexture3", + "fromAttribute": "place2dTexture3.repeatUV" }, { - "to": "Zinc_03_1", + "to": "file3", "toAttribute": "offset", - "toAttributeComplete": "Zinc_03_1.offset", - "from": "place2dTexture52", - "fromAttribute": "place2dTexture52.offset" + "toAttributeComplete": "file.offset", + "from": "place2dTexture3", + "fromAttribute": "place2dTexture3.offset" }, { - "to": "Zinc_03_1", + "to": "file3", "toAttribute": "offsetU", - "toAttributeComplete": "Zinc_03_1.offsetU", - "from": "place2dTexture52", - "fromAttribute": "place2dTexture52.offset" + "toAttributeComplete": "file.offsetU", + "from": "place2dTexture3", + "fromAttribute": "place2dTexture3.offset" }, { - "to": "Zinc_03_1", + "to": "file3", "toAttribute": "offsetV", - "toAttributeComplete": "Zinc_03_1.offsetV", - "from": "place2dTexture52", - "fromAttribute": "place2dTexture52.offset" + "toAttributeComplete": "file.offsetV", + "from": "place2dTexture3", + "fromAttribute": "place2dTexture3.offset" }, { - "to": "Zinc_03_1", + "to": "file3", "toAttribute": "rotateUV", - "toAttributeComplete": "Zinc_03_1.rotateUV", - "from": "place2dTexture52", - "fromAttribute": "place2dTexture52.rotateUV" + "toAttributeComplete": "file.rotateUV", + "from": "place2dTexture3", + "fromAttribute": "place2dTexture3.rotateUV" }, { - "to": "Zinc_03_1", + "to": "file3", "toAttribute": "noiseUV", - "toAttributeComplete": "Zinc_03_1.noiseUV", - "from": "place2dTexture52", - "fromAttribute": "place2dTexture52.noiseUV" + "toAttributeComplete": "file.noiseUV", + "from": "place2dTexture3", + "fromAttribute": "place2dTexture3.noiseUV" }, { - "to": "Zinc_03_1", + "to": "file3", "toAttribute": "noiseU", - "toAttributeComplete": "Zinc_03_1.noiseU", - "from": "place2dTexture52", - "fromAttribute": "place2dTexture52.noiseUV" + "toAttributeComplete": "file.noiseU", + "from": "place2dTexture3", + "fromAttribute": "place2dTexture3.noiseUV" }, { - "to": "Zinc_03_1", + "to": "file3", "toAttribute": "noiseV", - "toAttributeComplete": "Zinc_03_1.noiseV", - "from": "place2dTexture52", - "fromAttribute": "place2dTexture52.noiseUV" + "toAttributeComplete": "file.noiseV", + "from": "place2dTexture3", + "fromAttribute": "place2dTexture3.noiseUV" }, { - "to": "Zinc_03_1", + "to": "file3", "toAttribute": "vertexCameraOne", - "toAttributeComplete": "Zinc_03_1.vertexCameraOne", - "from": "place2dTexture52", - "fromAttribute": "place2dTexture52.vertexCameraOne" + "toAttributeComplete": "file.vertexCameraOne", + "from": "place2dTexture3", + "fromAttribute": "place2dTexture3.vertexCameraOne" }, { - "to": "Zinc_03_1", + "to": "file3", "toAttribute": "vertexCameraOneX", - "toAttributeComplete": "Zinc_03_1.vertexCameraOneX", - "from": "place2dTexture52", - "fromAttribute": "place2dTexture52.vertexCameraOne" + "toAttributeComplete": "file.vertexCameraOneX", + "from": "place2dTexture3", + "fromAttribute": "place2dTexture3.vertexCameraOne" }, { - "to": "Zinc_03_1", + "to": "file3", "toAttribute": "vertexCameraOneY", - "toAttributeComplete": "Zinc_03_1.vertexCameraOneY", - "from": "place2dTexture52", - "fromAttribute": "place2dTexture52.vertexCameraOne" + "toAttributeComplete": "file.vertexCameraOneY", + "from": "place2dTexture3", + "fromAttribute": "place2dTexture3.vertexCameraOne" }, { - "to": "Zinc_03_1", + "to": "file3", "toAttribute": "vertexCameraOneZ", - "toAttributeComplete": "Zinc_03_1.vertexCameraOneZ", - "from": "place2dTexture52", - "fromAttribute": "place2dTexture52.vertexCameraOne" + "toAttributeComplete": "file.vertexCameraOneZ", + "from": "place2dTexture3", + "fromAttribute": "place2dTexture3.vertexCameraOne" }, { - "to": "Zinc_03_1", + "to": "file3", "toAttribute": "vertexUvOne", - "toAttributeComplete": "Zinc_03_1.vertexUvOne", - "from": "place2dTexture52", - "fromAttribute": "place2dTexture52.vertexUvOne" + "toAttributeComplete": "file.vertexUvOne", + "from": "place2dTexture3", + "fromAttribute": "place2dTexture3.vertexUvOne" }, { - "to": "Zinc_03_1", + "to": "file3", "toAttribute": "vertexUvOneU", - "toAttributeComplete": "Zinc_03_1.vertexUvOneU", - "from": "place2dTexture52", - "fromAttribute": "place2dTexture52.vertexUvOne" + "toAttributeComplete": "file.vertexUvOneU", + "from": "place2dTexture3", + "fromAttribute": "place2dTexture3.vertexUvOne" }, { - "to": "Zinc_03_1", + "to": "file3", "toAttribute": "vertexUvOneV", - "toAttributeComplete": "Zinc_03_1.vertexUvOneV", - "from": "place2dTexture52", - "fromAttribute": "place2dTexture52.vertexUvOne" + "toAttributeComplete": "file.vertexUvOneV", + "from": "place2dTexture3", + "fromAttribute": "place2dTexture3.vertexUvOne" }, { - "to": "Zinc_03_1", + "to": "file3", "toAttribute": "vertexUvTwo", - "toAttributeComplete": "Zinc_03_1.vertexUvTwo", - "from": "place2dTexture52", - "fromAttribute": "place2dTexture52.vertexUvTwo" + "toAttributeComplete": "file.vertexUvTwo", + "from": "place2dTexture3", + "fromAttribute": "place2dTexture3.vertexUvTwo" }, { - "to": "Zinc_03_1", + "to": "file3", "toAttribute": "vertexUvTwoU", - "toAttributeComplete": "Zinc_03_1.vertexUvTwoU", - "from": "place2dTexture52", - "fromAttribute": "place2dTexture52.vertexUvTwo" + "toAttributeComplete": "file.vertexUvTwoU", + "from": "place2dTexture3", + "fromAttribute": "place2dTexture3.vertexUvTwo" }, { - "to": "Zinc_03_1", + "to": "file3", "toAttribute": "vertexUvTwoV", - "toAttributeComplete": "Zinc_03_1.vertexUvTwoV", - "from": "place2dTexture52", - "fromAttribute": "place2dTexture52.vertexUvTwo" + "toAttributeComplete": "file.vertexUvTwoV", + "from": "place2dTexture3", + "fromAttribute": "place2dTexture3.vertexUvTwo" }, { - "to": "Zinc_03_1", + "to": "file3", "toAttribute": "vertexUvThree", - "toAttributeComplete": "Zinc_03_1.vertexUvThree", - "from": "place2dTexture52", - "fromAttribute": "place2dTexture52.vertexUvThree" + "toAttributeComplete": "file.vertexUvThree", + "from": "place2dTexture3", + "fromAttribute": "place2dTexture3.vertexUvThree" }, { - "to": "Zinc_03_1", + "to": "file3", "toAttribute": "vertexUvThreeU", - "toAttributeComplete": "Zinc_03_1.vertexUvThreeU", - "from": "place2dTexture52", - "fromAttribute": "place2dTexture52.vertexUvThree" + "toAttributeComplete": "file.vertexUvThreeU", + "from": "place2dTexture3", + "fromAttribute": "place2dTexture3.vertexUvThree" }, { - "to": "Zinc_03_1", + "to": "file3", "toAttribute": "vertexUvThreeV", - "toAttributeComplete": "Zinc_03_1.vertexUvThreeV", - "from": "place2dTexture52", - "fromAttribute": "place2dTexture52.vertexUvThree" - }, - { - "to": "remapValue7", - "toAttribute": "inputValue", - "toAttributeComplete": "remapValue7.inputValue", - "from": "aiNoise2", - "fromAttribute": "aiNoise2.outColorR" - }, - { - "to": "aiTriplanar3", - "toAttribute": "input", - "toAttributeComplete": "aiTriplanar3.input", - "from": "bump2d4", - "fromAttribute": "bump2d4.outNormal" - }, - { - "to": "aiTriplanar3", - "toAttribute": "inputR", - "toAttributeComplete": "aiTriplanar3.inputR", - "from": "bump2d4", - "fromAttribute": "bump2d4.outNormal" - }, - { - "to": "aiTriplanar3", - "toAttribute": "inputG", - "toAttributeComplete": "aiTriplanar3.inputG", - "from": "bump2d4", - "fromAttribute": "bump2d4.outNormal" + "toAttributeComplete": "file.vertexUvThreeV", + "from": "place2dTexture3", + "fromAttribute": "place2dTexture3.vertexUvThree" + } + ], + "nodes": { + "file3": { + "data": { + "alphaIsLuminance": { + "type": "bool", + "value": true + }, + "outSize": { + "type": "float2", + "value": [ + [ + 3072.0, + 3072.0 + ] + ] + }, + "fileTextureName": { + "type": "string", + "value": "C:/Users/etudiant/Documents/clarrisse_alshader_tests/TEST_RENDU_CLARISSE/sourceimages/Concrete21/3K/Concrete21_NRM_3K.jpg" + }, + "outSizeY": { + "type": "float", + "value": 3072.0 + }, + "outSizeX": { + "type": "float", + "value": 3072.0 + }, + "computedFileTextureNamePattern": { + "type": "string", + "value": "C:/Users/etudiant/Documents/clarrisse_alshader_tests/TEST_RENDU_CLARISSE/sourceimages/Concrete21/3K/Concrete21_NRM_3K.jpg" + } + }, + "type": "file" }, - { - "to": "aiTriplanar3", - "toAttribute": "inputB", - "toAttributeComplete": "aiTriplanar3.inputB", - "from": "bump2d4", - "fromAttribute": "bump2d4.outNormal" + "file2": { + "data": { + "outSize": { + "type": "float2", + "value": [ + [ + 3072.0, + 3072.0 + ] + ] + }, + "fileTextureName": { + "type": "string", + "value": "C:/Users/etudiant/Documents/clarrisse_alshader_tests/TEST_RENDU_CLARISSE/sourceimages/Concrete21/3K/Concrete21_GLOSS_3K.jpg" + }, + "outSizeY": { + "type": "float", + "value": 3072.0 + }, + "outSizeX": { + "type": "float", + "value": 3072.0 + }, + "computedFileTextureNamePattern": { + "type": "string", + "value": "C:/Users/etudiant/Documents/clarrisse_alshader_tests/TEST_RENDU_CLARISSE/sourceimages/Concrete21/3K/Concrete21_GLOSS_3K.jpg" + } + }, + "type": "file" }, - { - "to": "bump2d4", - "toAttribute": "bumpValue", - "toAttributeComplete": "bump2d4.bumpValue", - "from": "remapValue9", - "fromAttribute": "remapValue9.outValue" - }, - { - "to": "remapValue9", - "toAttribute": "inputValue", - "toAttributeComplete": "remapValue9.inputValue", - "from": "file1", - "fromAttribute": "file1.outColorR" - }, - { - "to": "file1", - "toAttribute": "uvCoord", - "toAttributeComplete": "file1.uvCoord", - "from": "place2dTexture56", - "fromAttribute": "place2dTexture56.outUV" - }, - { - "to": "file1", - "toAttribute": "uCoord", - "toAttributeComplete": "file1.uCoord", - "from": "place2dTexture56", - "fromAttribute": "place2dTexture56.outUV" - }, - { - "to": "file1", - "toAttribute": "vCoord", - "toAttributeComplete": "file1.vCoord", - "from": "place2dTexture56", - "fromAttribute": "place2dTexture56.outUV" - }, - { - "to": "file1", - "toAttribute": "uvFilterSize", - "toAttributeComplete": "file1.uvFilterSize", - "from": "place2dTexture56", - "fromAttribute": "place2dTexture56.outUvFilterSize" - }, - { - "to": "file1", - "toAttribute": "uvFilterSizeX", - "toAttributeComplete": "file1.uvFilterSizeX", - "from": "place2dTexture56", - "fromAttribute": "place2dTexture56.outUvFilterSize" - }, - { - "to": "file1", - "toAttribute": "uvFilterSizeY", - "toAttributeComplete": "file1.uvFilterSizeY", - "from": "place2dTexture56", - "fromAttribute": "place2dTexture56.outUvFilterSize" - }, - { - "to": "file1", - "toAttribute": "coverage", - "toAttributeComplete": "file1.coverage", - "from": "place2dTexture56", - "fromAttribute": "place2dTexture56.coverage" - }, - { - "to": "file1", - "toAttribute": "coverageU", - "toAttributeComplete": "file1.coverageU", - "from": "place2dTexture56", - "fromAttribute": "place2dTexture56.coverage" - }, - { - "to": "file1", - "toAttribute": "coverageV", - "toAttributeComplete": "file1.coverageV", - "from": "place2dTexture56", - "fromAttribute": "place2dTexture56.coverage" - }, - { - "to": "file1", - "toAttribute": "translateFrame", - "toAttributeComplete": "file1.translateFrame", - "from": "place2dTexture56", - "fromAttribute": "place2dTexture56.translateFrame" - }, - { - "to": "file1", - "toAttribute": "translateFrameU", - "toAttributeComplete": "file1.translateFrameU", - "from": "place2dTexture56", - "fromAttribute": "place2dTexture56.translateFrame" - }, - { - "to": "file1", - "toAttribute": "translateFrameV", - "toAttributeComplete": "file1.translateFrameV", - "from": "place2dTexture56", - "fromAttribute": "place2dTexture56.translateFrame" - }, - { - "to": "file1", - "toAttribute": "rotateFrame", - "toAttributeComplete": "file1.rotateFrame", - "from": "place2dTexture56", - "fromAttribute": "place2dTexture56.rotateFrame" - }, - { - "to": "file1", - "toAttribute": "mirrorU", - "toAttributeComplete": "file1.mirrorU", - "from": "place2dTexture56", - "fromAttribute": "place2dTexture56.mirrorU" - }, - { - "to": "file1", - "toAttribute": "mirrorV", - "toAttributeComplete": "file1.mirrorV", - "from": "place2dTexture56", - "fromAttribute": "place2dTexture56.mirrorV" - }, - { - "to": "file1", - "toAttribute": "stagger", - "toAttributeComplete": "file1.stagger", - "from": "place2dTexture56", - "fromAttribute": "place2dTexture56.stagger" - }, - { - "to": "file1", - "toAttribute": "wrapU", - "toAttributeComplete": "file1.wrapU", - "from": "place2dTexture56", - "fromAttribute": "place2dTexture56.wrapU" - }, - { - "to": "file1", - "toAttribute": "wrapV", - "toAttributeComplete": "file1.wrapV", - "from": "place2dTexture56", - "fromAttribute": "place2dTexture56.wrapV" - }, - { - "to": "file1", - "toAttribute": "repeatUV", - "toAttributeComplete": "file1.repeatUV", - "from": "place2dTexture56", - "fromAttribute": "place2dTexture56.repeatUV" - }, - { - "to": "file1", - "toAttribute": "repeatU", - "toAttributeComplete": "file1.repeatU", - "from": "place2dTexture56", - "fromAttribute": "place2dTexture56.repeatUV" - }, - { - "to": "file1", - "toAttribute": "repeatV", - "toAttributeComplete": "file1.repeatV", - "from": "place2dTexture56", - "fromAttribute": "place2dTexture56.repeatUV" - }, - { - "to": "file1", - "toAttribute": "offset", - "toAttributeComplete": "file1.offset", - "from": "place2dTexture56", - "fromAttribute": "place2dTexture56.offset" - }, - { - "to": "file1", - "toAttribute": "offsetU", - "toAttributeComplete": "file1.offsetU", - "from": "place2dTexture56", - "fromAttribute": "place2dTexture56.offset" - }, - { - "to": "file1", - "toAttribute": "offsetV", - "toAttributeComplete": "file1.offsetV", - "from": "place2dTexture56", - "fromAttribute": "place2dTexture56.offset" - }, - { - "to": "file1", - "toAttribute": "rotateUV", - "toAttributeComplete": "file1.rotateUV", - "from": "place2dTexture56", - "fromAttribute": "place2dTexture56.rotateUV" - }, - { - "to": "file1", - "toAttribute": "noiseUV", - "toAttributeComplete": "file1.noiseUV", - "from": "place2dTexture56", - "fromAttribute": "place2dTexture56.noiseUV" - }, - { - "to": "file1", - "toAttribute": "noiseU", - "toAttributeComplete": "file1.noiseU", - "from": "place2dTexture56", - "fromAttribute": "place2dTexture56.noiseUV" - }, - { - "to": "file1", - "toAttribute": "noiseV", - "toAttributeComplete": "file1.noiseV", - "from": "place2dTexture56", - "fromAttribute": "place2dTexture56.noiseUV" - }, - { - "to": "file1", - "toAttribute": "vertexCameraOne", - "toAttributeComplete": "file1.vertexCameraOne", - "from": "place2dTexture56", - "fromAttribute": "place2dTexture56.vertexCameraOne" - }, - { - "to": "file1", - "toAttribute": "vertexCameraOneX", - "toAttributeComplete": "file1.vertexCameraOneX", - "from": "place2dTexture56", - "fromAttribute": "place2dTexture56.vertexCameraOne" - }, - { - "to": "file1", - "toAttribute": "vertexCameraOneY", - "toAttributeComplete": "file1.vertexCameraOneY", - "from": "place2dTexture56", - "fromAttribute": "place2dTexture56.vertexCameraOne" - }, - { - "to": "file1", - "toAttribute": "vertexCameraOneZ", - "toAttributeComplete": "file1.vertexCameraOneZ", - "from": "place2dTexture56", - "fromAttribute": "place2dTexture56.vertexCameraOne" - }, - { - "to": "file1", - "toAttribute": "vertexUvOne", - "toAttributeComplete": "file1.vertexUvOne", - "from": "place2dTexture56", - "fromAttribute": "place2dTexture56.vertexUvOne" - }, - { - "to": "file1", - "toAttribute": "vertexUvOneU", - "toAttributeComplete": "file1.vertexUvOneU", - "from": "place2dTexture56", - "fromAttribute": "place2dTexture56.vertexUvOne" - }, - { - "to": "file1", - "toAttribute": "vertexUvOneV", - "toAttributeComplete": "file1.vertexUvOneV", - "from": "place2dTexture56", - "fromAttribute": "place2dTexture56.vertexUvOne" - }, - { - "to": "file1", - "toAttribute": "vertexUvTwo", - "toAttributeComplete": "file1.vertexUvTwo", - "from": "place2dTexture56", - "fromAttribute": "place2dTexture56.vertexUvTwo" - }, - { - "to": "file1", - "toAttribute": "vertexUvTwoU", - "toAttributeComplete": "file1.vertexUvTwoU", - "from": "place2dTexture56", - "fromAttribute": "place2dTexture56.vertexUvTwo" - }, - { - "to": "file1", - "toAttribute": "vertexUvTwoV", - "toAttributeComplete": "file1.vertexUvTwoV", - "from": "place2dTexture56", - "fromAttribute": "place2dTexture56.vertexUvTwo" - }, - { - "to": "file1", - "toAttribute": "vertexUvThree", - "toAttributeComplete": "file1.vertexUvThree", - "from": "place2dTexture56", - "fromAttribute": "place2dTexture56.vertexUvThree" - }, - { - "to": "file1", - "toAttribute": "vertexUvThreeU", - "toAttributeComplete": "file1.vertexUvThreeU", - "from": "place2dTexture56", - "fromAttribute": "place2dTexture56.vertexUvThree" - }, - { - "to": "file1", - "toAttribute": "vertexUvThreeV", - "toAttributeComplete": "file1.vertexUvThreeV", - "from": "place2dTexture56", - "fromAttribute": "place2dTexture56.vertexUvThree" - }, - { - "to": "aiTriplanar2", - "toAttribute": "input", - "toAttributeComplete": "aiTriplanar2.input", - "from": "reverse3", - "fromAttribute": "reverse3.output" - }, - { - "to": "aiTriplanar2", - "toAttribute": "inputR", - "toAttributeComplete": "aiTriplanar2.inputR", - "from": "reverse3", - "fromAttribute": "reverse3.output" - }, - { - "to": "aiTriplanar2", - "toAttribute": "inputG", - "toAttributeComplete": "aiTriplanar2.inputG", - "from": "reverse3", - "fromAttribute": "reverse3.output" - }, - { - "to": "aiTriplanar2", - "toAttribute": "inputB", - "toAttributeComplete": "aiTriplanar2.inputB", - "from": "reverse3", - "fromAttribute": "reverse3.output" - }, - { - "to": "reverse3", - "toAttribute": "inputX", - "toAttributeComplete": "reverse3.inputX", - "from": "remapValue8", - "fromAttribute": "remapValue8.outValue" - }, - { - "to": "remapValue8", - "toAttribute": "inputValue", - "toAttributeComplete": "remapValue8.inputValue", - "from": "blendColors10", - "fromAttribute": "blendColors10.outputR" - }, - { - "to": "blendColors10", - "toAttribute": "blender", - "toAttributeComplete": "blendColors10.blender", - "from": "remapValue7", - "fromAttribute": "remapValue7.outValue" - }, - { - "to": "blendColors10", - "toAttribute": "color1", - "toAttributeComplete": "blendColors10.color1", - "from": "blendColors9", - "fromAttribute": "blendColors9.output" - }, - { - "to": "blendColors10", - "toAttribute": "color1R", - "toAttributeComplete": "blendColors10.color1R", - "from": "blendColors9", - "fromAttribute": "blendColors9.output" - }, - { - "to": "blendColors10", - "toAttribute": "color1G", - "toAttributeComplete": "blendColors10.color1G", - "from": "blendColors9", - "fromAttribute": "blendColors9.output" - }, - { - "to": "blendColors10", - "toAttribute": "color1B", - "toAttributeComplete": "blendColors10.color1B", - "from": "blendColors9", - "fromAttribute": "blendColors9.output" - }, - { - "to": "blendColors10", - "toAttribute": "color2", - "toAttributeComplete": "blendColors10.color2", - "from": "Zinc_03_Greyscale_1", - "fromAttribute": "Zinc_03_Greyscale_1.outColor" - }, - { - "to": "blendColors10", - "toAttribute": "color2R", - "toAttributeComplete": "blendColors10.color2R", - "from": "Zinc_03_Greyscale_1", - "fromAttribute": "Zinc_03_Greyscale_1.outColor" - }, - { - "to": "blendColors10", - "toAttribute": "color2G", - "toAttributeComplete": "blendColors10.color2G", - "from": "Zinc_03_Greyscale_1", - "fromAttribute": "Zinc_03_Greyscale_1.outColor" - }, - { - "to": "blendColors10", - "toAttribute": "color2B", - "toAttributeComplete": "blendColors10.color2B", - "from": "Zinc_03_Greyscale_1", - "fromAttribute": "Zinc_03_Greyscale_1.outColor" - }, - { - "to": "blendColors9", - "toAttribute": "blender", - "toAttributeComplete": "blendColors9.blender", - "from": "remapValue5", - "fromAttribute": "remapValue5.outValue" - }, - { - "to": "blendColors9", - "toAttribute": "color1", - "toAttributeComplete": "blendColors9.color1", - "from": "Zinc_Grey_01_1", - "fromAttribute": "Zinc_Grey_01_1.outColor" - }, - { - "to": "blendColors9", - "toAttribute": "color1R", - "toAttributeComplete": "blendColors9.color1R", - "from": "Zinc_Grey_01_1", - "fromAttribute": "Zinc_Grey_01_1.outColor" - }, - { - "to": "blendColors9", - "toAttribute": "color1G", - "toAttributeComplete": "blendColors9.color1G", - "from": "Zinc_Grey_01_1", - "fromAttribute": "Zinc_Grey_01_1.outColor" - }, - { - "to": "blendColors9", - "toAttribute": "color1B", - "toAttributeComplete": "blendColors9.color1B", - "from": "Zinc_Grey_01_1", - "fromAttribute": "Zinc_Grey_01_1.outColor" - }, - { - "to": "blendColors9", - "toAttribute": "color2", - "toAttributeComplete": "blendColors9.color2", - "from": "Zinc_Grey_02_1", - "fromAttribute": "Zinc_Grey_02_1.outColor" - }, - { - "to": "blendColors9", - "toAttribute": "color2R", - "toAttributeComplete": "blendColors9.color2R", - "from": "Zinc_Grey_02_1", - "fromAttribute": "Zinc_Grey_02_1.outColor" - }, - { - "to": "blendColors9", - "toAttribute": "color2G", - "toAttributeComplete": "blendColors9.color2G", - "from": "Zinc_Grey_02_1", - "fromAttribute": "Zinc_Grey_02_1.outColor" - }, - { - "to": "blendColors9", - "toAttribute": "color2B", - "toAttributeComplete": "blendColors9.color2B", - "from": "Zinc_Grey_02_1", - "fromAttribute": "Zinc_Grey_02_1.outColor" - }, - { - "to": "Zinc_Grey_01_1", - "toAttribute": "uvCoord", - "toAttributeComplete": "Zinc_Grey_01_1.uvCoord", - "from": "place2dTexture48", - "fromAttribute": "place2dTexture48.outUV" - }, - { - "to": "Zinc_Grey_01_1", - "toAttribute": "uCoord", - "toAttributeComplete": "Zinc_Grey_01_1.uCoord", - "from": "place2dTexture48", - "fromAttribute": "place2dTexture48.outUV" - }, - { - "to": "Zinc_Grey_01_1", - "toAttribute": "vCoord", - "toAttributeComplete": "Zinc_Grey_01_1.vCoord", - "from": "place2dTexture48", - "fromAttribute": "place2dTexture48.outUV" - }, - { - "to": "Zinc_Grey_01_1", - "toAttribute": "uvFilterSize", - "toAttributeComplete": "Zinc_Grey_01_1.uvFilterSize", - "from": "place2dTexture48", - "fromAttribute": "place2dTexture48.outUvFilterSize" - }, - { - "to": "Zinc_Grey_01_1", - "toAttribute": "uvFilterSizeX", - "toAttributeComplete": "Zinc_Grey_01_1.uvFilterSizeX", - "from": "place2dTexture48", - "fromAttribute": "place2dTexture48.outUvFilterSize" - }, - { - "to": "Zinc_Grey_01_1", - "toAttribute": "uvFilterSizeY", - "toAttributeComplete": "Zinc_Grey_01_1.uvFilterSizeY", - "from": "place2dTexture48", - "fromAttribute": "place2dTexture48.outUvFilterSize" - }, - { - "to": "Zinc_Grey_01_1", - "toAttribute": "coverage", - "toAttributeComplete": "Zinc_Grey_01_1.coverage", - "from": "place2dTexture48", - "fromAttribute": "place2dTexture48.coverage" - }, - { - "to": "Zinc_Grey_01_1", - "toAttribute": "coverageU", - "toAttributeComplete": "Zinc_Grey_01_1.coverageU", - "from": "place2dTexture48", - "fromAttribute": "place2dTexture48.coverage" - }, - { - "to": "Zinc_Grey_01_1", - "toAttribute": "coverageV", - "toAttributeComplete": "Zinc_Grey_01_1.coverageV", - "from": "place2dTexture48", - "fromAttribute": "place2dTexture48.coverage" - }, - { - "to": "Zinc_Grey_01_1", - "toAttribute": "translateFrame", - "toAttributeComplete": "Zinc_Grey_01_1.translateFrame", - "from": "place2dTexture48", - "fromAttribute": "place2dTexture48.translateFrame" - }, - { - "to": "Zinc_Grey_01_1", - "toAttribute": "translateFrameU", - "toAttributeComplete": "Zinc_Grey_01_1.translateFrameU", - "from": "place2dTexture48", - "fromAttribute": "place2dTexture48.translateFrame" - }, - { - "to": "Zinc_Grey_01_1", - "toAttribute": "translateFrameV", - "toAttributeComplete": "Zinc_Grey_01_1.translateFrameV", - "from": "place2dTexture48", - "fromAttribute": "place2dTexture48.translateFrame" - }, - { - "to": "Zinc_Grey_01_1", - "toAttribute": "rotateFrame", - "toAttributeComplete": "Zinc_Grey_01_1.rotateFrame", - "from": "place2dTexture48", - "fromAttribute": "place2dTexture48.rotateFrame" - }, - { - "to": "Zinc_Grey_01_1", - "toAttribute": "mirrorU", - "toAttributeComplete": "Zinc_Grey_01_1.mirrorU", - "from": "place2dTexture48", - "fromAttribute": "place2dTexture48.mirrorU" - }, - { - "to": "Zinc_Grey_01_1", - "toAttribute": "mirrorV", - "toAttributeComplete": "Zinc_Grey_01_1.mirrorV", - "from": "place2dTexture48", - "fromAttribute": "place2dTexture48.mirrorV" - }, - { - "to": "Zinc_Grey_01_1", - "toAttribute": "stagger", - "toAttributeComplete": "Zinc_Grey_01_1.stagger", - "from": "place2dTexture48", - "fromAttribute": "place2dTexture48.stagger" - }, - { - "to": "Zinc_Grey_01_1", - "toAttribute": "wrapU", - "toAttributeComplete": "Zinc_Grey_01_1.wrapU", - "from": "place2dTexture48", - "fromAttribute": "place2dTexture48.wrapU" - }, - { - "to": "Zinc_Grey_01_1", - "toAttribute": "wrapV", - "toAttributeComplete": "Zinc_Grey_01_1.wrapV", - "from": "place2dTexture48", - "fromAttribute": "place2dTexture48.wrapV" - }, - { - "to": "Zinc_Grey_01_1", - "toAttribute": "repeatUV", - "toAttributeComplete": "Zinc_Grey_01_1.repeatUV", - "from": "place2dTexture48", - "fromAttribute": "place2dTexture48.repeatUV" - }, - { - "to": "Zinc_Grey_01_1", - "toAttribute": "repeatU", - "toAttributeComplete": "Zinc_Grey_01_1.repeatU", - "from": "place2dTexture48", - "fromAttribute": "place2dTexture48.repeatUV" - }, - { - "to": "Zinc_Grey_01_1", - "toAttribute": "repeatV", - "toAttributeComplete": "Zinc_Grey_01_1.repeatV", - "from": "place2dTexture48", - "fromAttribute": "place2dTexture48.repeatUV" - }, - { - "to": "Zinc_Grey_01_1", - "toAttribute": "offset", - "toAttributeComplete": "Zinc_Grey_01_1.offset", - "from": "place2dTexture48", - "fromAttribute": "place2dTexture48.offset" - }, - { - "to": "Zinc_Grey_01_1", - "toAttribute": "offsetU", - "toAttributeComplete": "Zinc_Grey_01_1.offsetU", - "from": "place2dTexture48", - "fromAttribute": "place2dTexture48.offset" - }, - { - "to": "Zinc_Grey_01_1", - "toAttribute": "offsetV", - "toAttributeComplete": "Zinc_Grey_01_1.offsetV", - "from": "place2dTexture48", - "fromAttribute": "place2dTexture48.offset" - }, - { - "to": "Zinc_Grey_01_1", - "toAttribute": "rotateUV", - "toAttributeComplete": "Zinc_Grey_01_1.rotateUV", - "from": "place2dTexture48", - "fromAttribute": "place2dTexture48.rotateUV" - }, - { - "to": "Zinc_Grey_01_1", - "toAttribute": "noiseUV", - "toAttributeComplete": "Zinc_Grey_01_1.noiseUV", - "from": "place2dTexture48", - "fromAttribute": "place2dTexture48.noiseUV" - }, - { - "to": "Zinc_Grey_01_1", - "toAttribute": "noiseU", - "toAttributeComplete": "Zinc_Grey_01_1.noiseU", - "from": "place2dTexture48", - "fromAttribute": "place2dTexture48.noiseUV" - }, - { - "to": "Zinc_Grey_01_1", - "toAttribute": "noiseV", - "toAttributeComplete": "Zinc_Grey_01_1.noiseV", - "from": "place2dTexture48", - "fromAttribute": "place2dTexture48.noiseUV" - }, - { - "to": "Zinc_Grey_01_1", - "toAttribute": "vertexCameraOne", - "toAttributeComplete": "Zinc_Grey_01_1.vertexCameraOne", - "from": "place2dTexture48", - "fromAttribute": "place2dTexture48.vertexCameraOne" - }, - { - "to": "Zinc_Grey_01_1", - "toAttribute": "vertexCameraOneX", - "toAttributeComplete": "Zinc_Grey_01_1.vertexCameraOneX", - "from": "place2dTexture48", - "fromAttribute": "place2dTexture48.vertexCameraOne" - }, - { - "to": "Zinc_Grey_01_1", - "toAttribute": "vertexCameraOneY", - "toAttributeComplete": "Zinc_Grey_01_1.vertexCameraOneY", - "from": "place2dTexture48", - "fromAttribute": "place2dTexture48.vertexCameraOne" - }, - { - "to": "Zinc_Grey_01_1", - "toAttribute": "vertexCameraOneZ", - "toAttributeComplete": "Zinc_Grey_01_1.vertexCameraOneZ", - "from": "place2dTexture48", - "fromAttribute": "place2dTexture48.vertexCameraOne" - }, - { - "to": "Zinc_Grey_01_1", - "toAttribute": "vertexUvOne", - "toAttributeComplete": "Zinc_Grey_01_1.vertexUvOne", - "from": "place2dTexture48", - "fromAttribute": "place2dTexture48.vertexUvOne" - }, - { - "to": "Zinc_Grey_01_1", - "toAttribute": "vertexUvOneU", - "toAttributeComplete": "Zinc_Grey_01_1.vertexUvOneU", - "from": "place2dTexture48", - "fromAttribute": "place2dTexture48.vertexUvOne" - }, - { - "to": "Zinc_Grey_01_1", - "toAttribute": "vertexUvOneV", - "toAttributeComplete": "Zinc_Grey_01_1.vertexUvOneV", - "from": "place2dTexture48", - "fromAttribute": "place2dTexture48.vertexUvOne" - }, - { - "to": "Zinc_Grey_01_1", - "toAttribute": "vertexUvTwo", - "toAttributeComplete": "Zinc_Grey_01_1.vertexUvTwo", - "from": "place2dTexture48", - "fromAttribute": "place2dTexture48.vertexUvTwo" - }, - { - "to": "Zinc_Grey_01_1", - "toAttribute": "vertexUvTwoU", - "toAttributeComplete": "Zinc_Grey_01_1.vertexUvTwoU", - "from": "place2dTexture48", - "fromAttribute": "place2dTexture48.vertexUvTwo" - }, - { - "to": "Zinc_Grey_01_1", - "toAttribute": "vertexUvTwoV", - "toAttributeComplete": "Zinc_Grey_01_1.vertexUvTwoV", - "from": "place2dTexture48", - "fromAttribute": "place2dTexture48.vertexUvTwo" - }, - { - "to": "Zinc_Grey_01_1", - "toAttribute": "vertexUvThree", - "toAttributeComplete": "Zinc_Grey_01_1.vertexUvThree", - "from": "place2dTexture48", - "fromAttribute": "place2dTexture48.vertexUvThree" - }, - { - "to": "Zinc_Grey_01_1", - "toAttribute": "vertexUvThreeU", - "toAttributeComplete": "Zinc_Grey_01_1.vertexUvThreeU", - "from": "place2dTexture48", - "fromAttribute": "place2dTexture48.vertexUvThree" - }, - { - "to": "Zinc_Grey_01_1", - "toAttribute": "vertexUvThreeV", - "toAttributeComplete": "Zinc_Grey_01_1.vertexUvThreeV", - "from": "place2dTexture48", - "fromAttribute": "place2dTexture48.vertexUvThree" - }, - { - "to": "Zinc_Grey_02_1", - "toAttribute": "uvCoord", - "toAttributeComplete": "Zinc_Grey_02_1.uvCoord", - "from": "place2dTexture49", - "fromAttribute": "place2dTexture49.outUV" - }, - { - "to": "Zinc_Grey_02_1", - "toAttribute": "uCoord", - "toAttributeComplete": "Zinc_Grey_02_1.uCoord", - "from": "place2dTexture49", - "fromAttribute": "place2dTexture49.outUV" - }, - { - "to": "Zinc_Grey_02_1", - "toAttribute": "vCoord", - "toAttributeComplete": "Zinc_Grey_02_1.vCoord", - "from": "place2dTexture49", - "fromAttribute": "place2dTexture49.outUV" - }, - { - "to": "Zinc_Grey_02_1", - "toAttribute": "uvFilterSize", - "toAttributeComplete": "Zinc_Grey_02_1.uvFilterSize", - "from": "place2dTexture49", - "fromAttribute": "place2dTexture49.outUvFilterSize" - }, - { - "to": "Zinc_Grey_02_1", - "toAttribute": "uvFilterSizeX", - "toAttributeComplete": "Zinc_Grey_02_1.uvFilterSizeX", - "from": "place2dTexture49", - "fromAttribute": "place2dTexture49.outUvFilterSize" - }, - { - "to": "Zinc_Grey_02_1", - "toAttribute": "uvFilterSizeY", - "toAttributeComplete": "Zinc_Grey_02_1.uvFilterSizeY", - "from": "place2dTexture49", - "fromAttribute": "place2dTexture49.outUvFilterSize" - }, - { - "to": "Zinc_Grey_02_1", - "toAttribute": "coverage", - "toAttributeComplete": "Zinc_Grey_02_1.coverage", - "from": "place2dTexture49", - "fromAttribute": "place2dTexture49.coverage" - }, - { - "to": "Zinc_Grey_02_1", - "toAttribute": "coverageU", - "toAttributeComplete": "Zinc_Grey_02_1.coverageU", - "from": "place2dTexture49", - "fromAttribute": "place2dTexture49.coverage" - }, - { - "to": "Zinc_Grey_02_1", - "toAttribute": "coverageV", - "toAttributeComplete": "Zinc_Grey_02_1.coverageV", - "from": "place2dTexture49", - "fromAttribute": "place2dTexture49.coverage" - }, - { - "to": "Zinc_Grey_02_1", - "toAttribute": "translateFrame", - "toAttributeComplete": "Zinc_Grey_02_1.translateFrame", - "from": "place2dTexture49", - "fromAttribute": "place2dTexture49.translateFrame" - }, - { - "to": "Zinc_Grey_02_1", - "toAttribute": "translateFrameU", - "toAttributeComplete": "Zinc_Grey_02_1.translateFrameU", - "from": "place2dTexture49", - "fromAttribute": "place2dTexture49.translateFrame" - }, - { - "to": "Zinc_Grey_02_1", - "toAttribute": "translateFrameV", - "toAttributeComplete": "Zinc_Grey_02_1.translateFrameV", - "from": "place2dTexture49", - "fromAttribute": "place2dTexture49.translateFrame" - }, - { - "to": "Zinc_Grey_02_1", - "toAttribute": "rotateFrame", - "toAttributeComplete": "Zinc_Grey_02_1.rotateFrame", - "from": "place2dTexture49", - "fromAttribute": "place2dTexture49.rotateFrame" - }, - { - "to": "Zinc_Grey_02_1", - "toAttribute": "mirrorU", - "toAttributeComplete": "Zinc_Grey_02_1.mirrorU", - "from": "place2dTexture49", - "fromAttribute": "place2dTexture49.mirrorU" - }, - { - "to": "Zinc_Grey_02_1", - "toAttribute": "mirrorV", - "toAttributeComplete": "Zinc_Grey_02_1.mirrorV", - "from": "place2dTexture49", - "fromAttribute": "place2dTexture49.mirrorV" - }, - { - "to": "Zinc_Grey_02_1", - "toAttribute": "stagger", - "toAttributeComplete": "Zinc_Grey_02_1.stagger", - "from": "place2dTexture49", - "fromAttribute": "place2dTexture49.stagger" - }, - { - "to": "Zinc_Grey_02_1", - "toAttribute": "wrapU", - "toAttributeComplete": "Zinc_Grey_02_1.wrapU", - "from": "place2dTexture49", - "fromAttribute": "place2dTexture49.wrapU" - }, - { - "to": "Zinc_Grey_02_1", - "toAttribute": "wrapV", - "toAttributeComplete": "Zinc_Grey_02_1.wrapV", - "from": "place2dTexture49", - "fromAttribute": "place2dTexture49.wrapV" - }, - { - "to": "Zinc_Grey_02_1", - "toAttribute": "repeatUV", - "toAttributeComplete": "Zinc_Grey_02_1.repeatUV", - "from": "place2dTexture49", - "fromAttribute": "place2dTexture49.repeatUV" - }, - { - "to": "Zinc_Grey_02_1", - "toAttribute": "repeatU", - "toAttributeComplete": "Zinc_Grey_02_1.repeatU", - "from": "place2dTexture49", - "fromAttribute": "place2dTexture49.repeatUV" - }, - { - "to": "Zinc_Grey_02_1", - "toAttribute": "repeatV", - "toAttributeComplete": "Zinc_Grey_02_1.repeatV", - "from": "place2dTexture49", - "fromAttribute": "place2dTexture49.repeatUV" - }, - { - "to": "Zinc_Grey_02_1", - "toAttribute": "offset", - "toAttributeComplete": "Zinc_Grey_02_1.offset", - "from": "place2dTexture49", - "fromAttribute": "place2dTexture49.offset" - }, - { - "to": "Zinc_Grey_02_1", - "toAttribute": "offsetU", - "toAttributeComplete": "Zinc_Grey_02_1.offsetU", - "from": "place2dTexture49", - "fromAttribute": "place2dTexture49.offset" - }, - { - "to": "Zinc_Grey_02_1", - "toAttribute": "offsetV", - "toAttributeComplete": "Zinc_Grey_02_1.offsetV", - "from": "place2dTexture49", - "fromAttribute": "place2dTexture49.offset" - }, - { - "to": "Zinc_Grey_02_1", - "toAttribute": "rotateUV", - "toAttributeComplete": "Zinc_Grey_02_1.rotateUV", - "from": "place2dTexture49", - "fromAttribute": "place2dTexture49.rotateUV" - }, - { - "to": "Zinc_Grey_02_1", - "toAttribute": "noiseUV", - "toAttributeComplete": "Zinc_Grey_02_1.noiseUV", - "from": "place2dTexture49", - "fromAttribute": "place2dTexture49.noiseUV" - }, - { - "to": "Zinc_Grey_02_1", - "toAttribute": "noiseU", - "toAttributeComplete": "Zinc_Grey_02_1.noiseU", - "from": "place2dTexture49", - "fromAttribute": "place2dTexture49.noiseUV" - }, - { - "to": "Zinc_Grey_02_1", - "toAttribute": "noiseV", - "toAttributeComplete": "Zinc_Grey_02_1.noiseV", - "from": "place2dTexture49", - "fromAttribute": "place2dTexture49.noiseUV" - }, - { - "to": "Zinc_Grey_02_1", - "toAttribute": "vertexCameraOne", - "toAttributeComplete": "Zinc_Grey_02_1.vertexCameraOne", - "from": "place2dTexture49", - "fromAttribute": "place2dTexture49.vertexCameraOne" - }, - { - "to": "Zinc_Grey_02_1", - "toAttribute": "vertexCameraOneX", - "toAttributeComplete": "Zinc_Grey_02_1.vertexCameraOneX", - "from": "place2dTexture49", - "fromAttribute": "place2dTexture49.vertexCameraOne" - }, - { - "to": "Zinc_Grey_02_1", - "toAttribute": "vertexCameraOneY", - "toAttributeComplete": "Zinc_Grey_02_1.vertexCameraOneY", - "from": "place2dTexture49", - "fromAttribute": "place2dTexture49.vertexCameraOne" - }, - { - "to": "Zinc_Grey_02_1", - "toAttribute": "vertexCameraOneZ", - "toAttributeComplete": "Zinc_Grey_02_1.vertexCameraOneZ", - "from": "place2dTexture49", - "fromAttribute": "place2dTexture49.vertexCameraOne" - }, - { - "to": "Zinc_Grey_02_1", - "toAttribute": "vertexUvOne", - "toAttributeComplete": "Zinc_Grey_02_1.vertexUvOne", - "from": "place2dTexture49", - "fromAttribute": "place2dTexture49.vertexUvOne" - }, - { - "to": "Zinc_Grey_02_1", - "toAttribute": "vertexUvOneU", - "toAttributeComplete": "Zinc_Grey_02_1.vertexUvOneU", - "from": "place2dTexture49", - "fromAttribute": "place2dTexture49.vertexUvOne" - }, - { - "to": "Zinc_Grey_02_1", - "toAttribute": "vertexUvOneV", - "toAttributeComplete": "Zinc_Grey_02_1.vertexUvOneV", - "from": "place2dTexture49", - "fromAttribute": "place2dTexture49.vertexUvOne" - }, - { - "to": "Zinc_Grey_02_1", - "toAttribute": "vertexUvTwo", - "toAttributeComplete": "Zinc_Grey_02_1.vertexUvTwo", - "from": "place2dTexture49", - "fromAttribute": "place2dTexture49.vertexUvTwo" - }, - { - "to": "Zinc_Grey_02_1", - "toAttribute": "vertexUvTwoU", - "toAttributeComplete": "Zinc_Grey_02_1.vertexUvTwoU", - "from": "place2dTexture49", - "fromAttribute": "place2dTexture49.vertexUvTwo" - }, - { - "to": "Zinc_Grey_02_1", - "toAttribute": "vertexUvTwoV", - "toAttributeComplete": "Zinc_Grey_02_1.vertexUvTwoV", - "from": "place2dTexture49", - "fromAttribute": "place2dTexture49.vertexUvTwo" - }, - { - "to": "Zinc_Grey_02_1", - "toAttribute": "vertexUvThree", - "toAttributeComplete": "Zinc_Grey_02_1.vertexUvThree", - "from": "place2dTexture49", - "fromAttribute": "place2dTexture49.vertexUvThree" - }, - { - "to": "Zinc_Grey_02_1", - "toAttribute": "vertexUvThreeU", - "toAttributeComplete": "Zinc_Grey_02_1.vertexUvThreeU", - "from": "place2dTexture49", - "fromAttribute": "place2dTexture49.vertexUvThree" - }, - { - "to": "Zinc_Grey_02_1", - "toAttribute": "vertexUvThreeV", - "toAttributeComplete": "Zinc_Grey_02_1.vertexUvThreeV", - "from": "place2dTexture49", - "fromAttribute": "place2dTexture49.vertexUvThree" - }, - { - "to": "remapValue5", - "toAttribute": "inputValue", - "toAttributeComplete": "remapValue5.inputValue", - "from": "noise3", - "fromAttribute": "noise3.outAlpha" - }, - { - "to": "noise3", - "toAttribute": "uvCoord", - "toAttributeComplete": "noise3.uvCoord", - "from": "place2dTexture50", - "fromAttribute": "place2dTexture50.outUV" - }, - { - "to": "noise3", - "toAttribute": "uCoord", - "toAttributeComplete": "noise3.uCoord", - "from": "place2dTexture50", - "fromAttribute": "place2dTexture50.outUV" - }, - { - "to": "noise3", - "toAttribute": "vCoord", - "toAttributeComplete": "noise3.vCoord", - "from": "place2dTexture50", - "fromAttribute": "place2dTexture50.outUV" - }, - { - "to": "noise3", - "toAttribute": "uvFilterSize", - "toAttributeComplete": "noise3.uvFilterSize", - "from": "place2dTexture50", - "fromAttribute": "place2dTexture50.outUvFilterSize" - }, - { - "to": "noise3", - "toAttribute": "uvFilterSizeX", - "toAttributeComplete": "noise3.uvFilterSizeX", - "from": "place2dTexture50", - "fromAttribute": "place2dTexture50.outUvFilterSize" - }, - { - "to": "noise3", - "toAttribute": "uvFilterSizeY", - "toAttributeComplete": "noise3.uvFilterSizeY", - "from": "place2dTexture50", - "fromAttribute": "place2dTexture50.outUvFilterSize" - }, - { - "to": "Zinc_03_Greyscale_1", - "toAttribute": "uvCoord", - "toAttributeComplete": "Zinc_03_Greyscale_1.uvCoord", - "from": "place2dTexture53", - "fromAttribute": "place2dTexture53.outUV" - }, - { - "to": "Zinc_03_Greyscale_1", - "toAttribute": "uCoord", - "toAttributeComplete": "Zinc_03_Greyscale_1.uCoord", - "from": "place2dTexture53", - "fromAttribute": "place2dTexture53.outUV" - }, - { - "to": "Zinc_03_Greyscale_1", - "toAttribute": "vCoord", - "toAttributeComplete": "Zinc_03_Greyscale_1.vCoord", - "from": "place2dTexture53", - "fromAttribute": "place2dTexture53.outUV" - }, - { - "to": "Zinc_03_Greyscale_1", - "toAttribute": "uvFilterSize", - "toAttributeComplete": "Zinc_03_Greyscale_1.uvFilterSize", - "from": "place2dTexture53", - "fromAttribute": "place2dTexture53.outUvFilterSize" - }, - { - "to": "Zinc_03_Greyscale_1", - "toAttribute": "uvFilterSizeX", - "toAttributeComplete": "Zinc_03_Greyscale_1.uvFilterSizeX", - "from": "place2dTexture53", - "fromAttribute": "place2dTexture53.outUvFilterSize" - }, - { - "to": "Zinc_03_Greyscale_1", - "toAttribute": "uvFilterSizeY", - "toAttributeComplete": "Zinc_03_Greyscale_1.uvFilterSizeY", - "from": "place2dTexture53", - "fromAttribute": "place2dTexture53.outUvFilterSize" - }, - { - "to": "Zinc_03_Greyscale_1", - "toAttribute": "coverage", - "toAttributeComplete": "Zinc_03_Greyscale_1.coverage", - "from": "place2dTexture53", - "fromAttribute": "place2dTexture53.coverage" - }, - { - "to": "Zinc_03_Greyscale_1", - "toAttribute": "coverageU", - "toAttributeComplete": "Zinc_03_Greyscale_1.coverageU", - "from": "place2dTexture53", - "fromAttribute": "place2dTexture53.coverage" - }, - { - "to": "Zinc_03_Greyscale_1", - "toAttribute": "coverageV", - "toAttributeComplete": "Zinc_03_Greyscale_1.coverageV", - "from": "place2dTexture53", - "fromAttribute": "place2dTexture53.coverage" - }, - { - "to": "Zinc_03_Greyscale_1", - "toAttribute": "translateFrame", - "toAttributeComplete": "Zinc_03_Greyscale_1.translateFrame", - "from": "place2dTexture53", - "fromAttribute": "place2dTexture53.translateFrame" - }, - { - "to": "Zinc_03_Greyscale_1", - "toAttribute": "translateFrameU", - "toAttributeComplete": "Zinc_03_Greyscale_1.translateFrameU", - "from": "place2dTexture53", - "fromAttribute": "place2dTexture53.translateFrame" - }, - { - "to": "Zinc_03_Greyscale_1", - "toAttribute": "translateFrameV", - "toAttributeComplete": "Zinc_03_Greyscale_1.translateFrameV", - "from": "place2dTexture53", - "fromAttribute": "place2dTexture53.translateFrame" - }, - { - "to": "Zinc_03_Greyscale_1", - "toAttribute": "rotateFrame", - "toAttributeComplete": "Zinc_03_Greyscale_1.rotateFrame", - "from": "place2dTexture53", - "fromAttribute": "place2dTexture53.rotateFrame" - }, - { - "to": "Zinc_03_Greyscale_1", - "toAttribute": "mirrorU", - "toAttributeComplete": "Zinc_03_Greyscale_1.mirrorU", - "from": "place2dTexture53", - "fromAttribute": "place2dTexture53.mirrorU" - }, - { - "to": "Zinc_03_Greyscale_1", - "toAttribute": "mirrorV", - "toAttributeComplete": "Zinc_03_Greyscale_1.mirrorV", - "from": "place2dTexture53", - "fromAttribute": "place2dTexture53.mirrorV" - }, - { - "to": "Zinc_03_Greyscale_1", - "toAttribute": "stagger", - "toAttributeComplete": "Zinc_03_Greyscale_1.stagger", - "from": "place2dTexture53", - "fromAttribute": "place2dTexture53.stagger" - }, - { - "to": "Zinc_03_Greyscale_1", - "toAttribute": "wrapU", - "toAttributeComplete": "Zinc_03_Greyscale_1.wrapU", - "from": "place2dTexture53", - "fromAttribute": "place2dTexture53.wrapU" - }, - { - "to": "Zinc_03_Greyscale_1", - "toAttribute": "wrapV", - "toAttributeComplete": "Zinc_03_Greyscale_1.wrapV", - "from": "place2dTexture53", - "fromAttribute": "place2dTexture53.wrapV" - }, - { - "to": "Zinc_03_Greyscale_1", - "toAttribute": "repeatUV", - "toAttributeComplete": "Zinc_03_Greyscale_1.repeatUV", - "from": "place2dTexture53", - "fromAttribute": "place2dTexture53.repeatUV" - }, - { - "to": "Zinc_03_Greyscale_1", - "toAttribute": "repeatU", - "toAttributeComplete": "Zinc_03_Greyscale_1.repeatU", - "from": "place2dTexture53", - "fromAttribute": "place2dTexture53.repeatUV" - }, - { - "to": "Zinc_03_Greyscale_1", - "toAttribute": "repeatV", - "toAttributeComplete": "Zinc_03_Greyscale_1.repeatV", - "from": "place2dTexture53", - "fromAttribute": "place2dTexture53.repeatUV" - }, - { - "to": "Zinc_03_Greyscale_1", - "toAttribute": "offset", - "toAttributeComplete": "Zinc_03_Greyscale_1.offset", - "from": "place2dTexture53", - "fromAttribute": "place2dTexture53.offset" - }, - { - "to": "Zinc_03_Greyscale_1", - "toAttribute": "offsetU", - "toAttributeComplete": "Zinc_03_Greyscale_1.offsetU", - "from": "place2dTexture53", - "fromAttribute": "place2dTexture53.offset" - }, - { - "to": "Zinc_03_Greyscale_1", - "toAttribute": "offsetV", - "toAttributeComplete": "Zinc_03_Greyscale_1.offsetV", - "from": "place2dTexture53", - "fromAttribute": "place2dTexture53.offset" - }, - { - "to": "Zinc_03_Greyscale_1", - "toAttribute": "rotateUV", - "toAttributeComplete": "Zinc_03_Greyscale_1.rotateUV", - "from": "place2dTexture53", - "fromAttribute": "place2dTexture53.rotateUV" - }, - { - "to": "Zinc_03_Greyscale_1", - "toAttribute": "noiseUV", - "toAttributeComplete": "Zinc_03_Greyscale_1.noiseUV", - "from": "place2dTexture53", - "fromAttribute": "place2dTexture53.noiseUV" - }, - { - "to": "Zinc_03_Greyscale_1", - "toAttribute": "noiseU", - "toAttributeComplete": "Zinc_03_Greyscale_1.noiseU", - "from": "place2dTexture53", - "fromAttribute": "place2dTexture53.noiseUV" - }, - { - "to": "Zinc_03_Greyscale_1", - "toAttribute": "noiseV", - "toAttributeComplete": "Zinc_03_Greyscale_1.noiseV", - "from": "place2dTexture53", - "fromAttribute": "place2dTexture53.noiseUV" - }, - { - "to": "Zinc_03_Greyscale_1", - "toAttribute": "vertexCameraOne", - "toAttributeComplete": "Zinc_03_Greyscale_1.vertexCameraOne", - "from": "place2dTexture53", - "fromAttribute": "place2dTexture53.vertexCameraOne" - }, - { - "to": "Zinc_03_Greyscale_1", - "toAttribute": "vertexCameraOneX", - "toAttributeComplete": "Zinc_03_Greyscale_1.vertexCameraOneX", - "from": "place2dTexture53", - "fromAttribute": "place2dTexture53.vertexCameraOne" - }, - { - "to": "Zinc_03_Greyscale_1", - "toAttribute": "vertexCameraOneY", - "toAttributeComplete": "Zinc_03_Greyscale_1.vertexCameraOneY", - "from": "place2dTexture53", - "fromAttribute": "place2dTexture53.vertexCameraOne" - }, - { - "to": "Zinc_03_Greyscale_1", - "toAttribute": "vertexCameraOneZ", - "toAttributeComplete": "Zinc_03_Greyscale_1.vertexCameraOneZ", - "from": "place2dTexture53", - "fromAttribute": "place2dTexture53.vertexCameraOne" - }, - { - "to": "Zinc_03_Greyscale_1", - "toAttribute": "vertexUvOne", - "toAttributeComplete": "Zinc_03_Greyscale_1.vertexUvOne", - "from": "place2dTexture53", - "fromAttribute": "place2dTexture53.vertexUvOne" - }, - { - "to": "Zinc_03_Greyscale_1", - "toAttribute": "vertexUvOneU", - "toAttributeComplete": "Zinc_03_Greyscale_1.vertexUvOneU", - "from": "place2dTexture53", - "fromAttribute": "place2dTexture53.vertexUvOne" - }, - { - "to": "Zinc_03_Greyscale_1", - "toAttribute": "vertexUvOneV", - "toAttributeComplete": "Zinc_03_Greyscale_1.vertexUvOneV", - "from": "place2dTexture53", - "fromAttribute": "place2dTexture53.vertexUvOne" - }, - { - "to": "Zinc_03_Greyscale_1", - "toAttribute": "vertexUvTwo", - "toAttributeComplete": "Zinc_03_Greyscale_1.vertexUvTwo", - "from": "place2dTexture53", - "fromAttribute": "place2dTexture53.vertexUvTwo" - }, - { - "to": "Zinc_03_Greyscale_1", - "toAttribute": "vertexUvTwoU", - "toAttributeComplete": "Zinc_03_Greyscale_1.vertexUvTwoU", - "from": "place2dTexture53", - "fromAttribute": "place2dTexture53.vertexUvTwo" - }, - { - "to": "Zinc_03_Greyscale_1", - "toAttribute": "vertexUvTwoV", - "toAttributeComplete": "Zinc_03_Greyscale_1.vertexUvTwoV", - "from": "place2dTexture53", - "fromAttribute": "place2dTexture53.vertexUvTwo" - }, - { - "to": "Zinc_03_Greyscale_1", - "toAttribute": "vertexUvThree", - "toAttributeComplete": "Zinc_03_Greyscale_1.vertexUvThree", - "from": "place2dTexture53", - "fromAttribute": "place2dTexture53.vertexUvThree" - }, - { - "to": "Zinc_03_Greyscale_1", - "toAttribute": "vertexUvThreeU", - "toAttributeComplete": "Zinc_03_Greyscale_1.vertexUvThreeU", - "from": "place2dTexture53", - "fromAttribute": "place2dTexture53.vertexUvThree" - }, - { - "to": "Zinc_03_Greyscale_1", - "toAttribute": "vertexUvThreeV", - "toAttributeComplete": "Zinc_03_Greyscale_1.vertexUvThreeV", - "from": "place2dTexture53", - "fromAttribute": "place2dTexture53.vertexUvThree" - } - ], - "nodes": { - "file1": { - "data": { - "fileTextureName": { - "type": "string", - "value": "Z:/PFE2019/OPALE/03_WORK/01_ASSET_3D/03_PROPS/BATIMENT_PAUVRE_01/01_FAB/04_LOOKDEV/MAYA//sourceimages/Grunge_02.png" - }, - "computedFileTextureNamePattern": { - "type": "string", - "value": "Z:/PFE2019/OPALE/03_WORK/01_ASSET_3D/03_PROPS/BATIMENT_PAUVRE_01/01_FAB/04_LOOKDEV/MAYA//sourceimages/Grunge_02.png" - } - }, - "type": "file" - }, - "remapValue5": { - "data": { - "inputValue": { - "type": "float", - "value": -0.4846820831298828 - }, - "value": { - "type": "TdataCompound", - "value": [ - [ - 0.0, - 0.0, - 1.0 - ], - [ - 1.0, - 1.0, - 1.0 - ], - [ - 0.40869563817977905, - 0.0, - 1.0 - ], - [ - 0.6173912882804871, - 0.0, - 1.0 - ], - [ - 0.8260869383811951, - 0.3400000035762787, - 1.0 - ] - ] - } - }, - "type": "remapValue" - }, - "remapValue7": { - "data": { - "value": { - "type": "TdataCompound", - "value": [ - [ - 0.40869563817977905, - 0.0, - 1.0 - ], - [ - 1.0, - 1.0, - 1.0 - ] - ] - } - }, - "type": "remapValue" - }, - "place2dTexture47": { - "data": { - "repeatUV": { - "type": "float2", - "value": [ - [ - 10.0, - 10.0 - ] - ] - }, - "repeatU": { - "type": "float", - "value": 10.0 - }, - "repeatV": { - "type": "float", - "value": 10.0 - } - }, - "type": "place2dTexture" - }, - "remapValue9": { - "data": { - "value": { - "type": "TdataCompound", - "value": [ - [ - 1.0, - 1.0, - 1.0 - ], - [ - 0.0, - 0.0, - 1.0 - ] - ] - } - }, - "type": "remapValue" - }, - "remapValue8": { - "data": { - "value": { - "type": "TdataCompound", - "value": [ - [ - 0.0, - 0.07999999821186066, - 1.0 - ], - [ - 1.0, - 1.0, - 1.0 - ] - ] - }, - "outValue": { - "type": "float", - "value": 0.07999999821186066 - } - }, - "type": "remapValue" - }, - "remapColor1": { - "data": { - "blue": { - "type": "TdataCompound", - "value": [ - [ - 0.0, - 0.0, - 1.0 - ], - [ - 1.0, - 1.0, - 1.0 - ] - ] - }, - "outColorB": { - "type": "float", - "value": 0.0 - }, - "colorB": { - "type": "float", - "value": 0.0 - }, - "outColorG": { - "type": "float", - "value": 0.0 - }, - "colorG": { - "type": "float", - "value": 0.0 - }, - "color": { - "type": "float3", - "value": [ - [ - 0.0, - 0.0, - 0.0 - ] - ] - }, - "outColorR": { - "type": "float", - "value": 0.0 - }, - "outColor": { - "type": "float3", - "value": [ - [ - 0.0, - 0.0, - 0.0 - ] - ] - }, - "colorR": { - "type": "float", - "value": 0.0 - }, - "green": { - "type": "TdataCompound", - "value": [ - [ - 0.0, - 0.0, - 1.0 - ], - [ - 1.0, - 1.0, - 1.0 - ], - [ - 0.469565212726593, - 0.47999998927116394, - 1.0 - ] - ] - }, - "red": { - "type": "TdataCompound", - "value": [ - [ - 0.0, - 0.0, - 1.0 - ], - [ - 1.0, - 0.8999999761581421, - 1.0 - ] - ] - } - }, - "type": "remapColor" - }, - "Zinc_01_1": { - "data": { - "outSize": { - "type": "float2", - "value": [ - [ - 2048.0, - 2048.0 - ] - ] - }, - "fileTextureName": { - "type": "string", - "value": "Z:/PFE2019/OPALE/03_WORK/01_ASSET_3D/03_PROPS/BATIMENT_PAUVRE_01/01_FAB/04_LOOKDEV/MAYA/sourceimages/Zinc_01.jpg" - }, - "outSizeX": { - "type": "float", - "value": 2048.0 - }, - "repeatUV": { - "type": "float2", - "value": [ - [ - 10.0, - 10.0 - ] - ] - }, - "outSizeY": { - "type": "float", - "value": 2048.0 - }, - "repeatU": { - "type": "float", - "value": 10.0 - }, - "repeatV": { - "type": "float", - "value": 10.0 - }, - "computedFileTextureNamePattern": { - "type": "string", - "value": "Z:/PFE2019/OPALE/03_WORK/01_ASSET_3D/03_PROPS/BATIMENT_PAUVRE_01/01_FAB/04_LOOKDEV/MAYA/sourceimages/Zinc_01.jpg" - } - }, - "type": "file" - }, - "reverse3": { - "data": { - "input": { - "type": "float3", - "value": [ - [ - 0.07999999821186066, - 0.0, - 0.0 - ] - ] - }, - "inputX": { - "type": "float", - "value": 0.07999999821186066 - }, - "outputX": { - "type": "float", - "value": 0.9200000166893005 - }, - "output": { - "type": "float3", - "value": [ - [ - 0.9200000166893005, - 1.0, - 1.0 - ] - ] - } - }, - "type": "reverse" - }, - "SH_Zinc": { - "data": { - "outColorB": { - "type": "float", - "value": 0.0 - }, - "normalCamera": { - "type": "float3", - "value": [ - [ - 0.0, - 0.0, - 0.0 - ] - ] - }, - "baseColor": { - "type": "float3", - "value": [ - [ - 0.0, - 0.0, - 0.0 - ] - ] - }, - "normalCameraZ": { - "type": "float", - "value": 0.0 - }, - "outColorG": { - "type": "float", - "value": 0.0 - }, - "normalCameraX": { - "type": "float", - "value": 0.0 - }, - "specularRoughness": { - "type": "float", - "value": 0.0 - }, - "specularIOR": { - "type": "float", - "value": 1.5169999599456787 - }, - "baseColorR": { - "type": "float", - "value": 0.0 - }, - "normalCameraY": { - "type": "float", - "value": 0.0 - }, - "outColorR": { - "type": "float", - "value": 0.0 - }, - "outColor": { - "type": "float3", - "value": [ - [ - 0.0, - 0.0, - 0.0 - ] - ] - }, - "baseColorG": { - "type": "float", - "value": 0.0 - }, - "baseColorB": { - "type": "float", - "value": 0.0 - } - }, - "type": "aiStandardSurface" - }, - "Zinc_03_1": { - "data": { - "outSize": { - "type": "float2", - "value": [ - [ - 2048.0, - 2048.0 - ] - ] - }, - "fileTextureName": { - "type": "string", - "value": "Z:/PFE2019/OPALE/03_WORK/01_ASSET_3D/03_PROPS/BATIMENT_PAUVRE_01/01_FAB/04_LOOKDEV/MAYA/sourceimages/Zinc_03.jpg" - }, - "outSizeX": { - "type": "float", - "value": 2048.0 - }, - "repeatUV": { - "type": "float2", - "value": [ - [ - 5.0, - 5.0 - ] - ] - }, - "outSizeY": { - "type": "float", - "value": 2048.0 - }, - "repeatU": { - "type": "float", - "value": 5.0 - }, - "repeatV": { - "type": "float", - "value": 5.0 - }, - "computedFileTextureNamePattern": { - "type": "string", - "value": "Z:/PFE2019/OPALE/03_WORK/01_ASSET_3D/03_PROPS/BATIMENT_PAUVRE_01/01_FAB/04_LOOKDEV/MAYA/sourceimages/Zinc_03.jpg" - } - }, - "type": "file" - }, - "place2dTexture46": { - "data": { - "repeatUV": { - "type": "float2", - "value": [ - [ - 10.0, - 10.0 - ] - ] - }, - "repeatU": { - "type": "float", - "value": 10.0 - }, - "repeatV": { - "type": "float", - "value": 10.0 - } - }, - "type": "place2dTexture" - }, - "Zinc_02_1": { - "data": { - "outSize": { - "type": "float2", - "value": [ - [ - 2048.0, - 2048.0 - ] - ] - }, - "fileTextureName": { - "type": "string", - "value": "Z:/PFE2019/OPALE/03_WORK/01_ASSET_3D/03_PROPS/BATIMENT_PAUVRE_01/01_FAB/04_LOOKDEV/MAYA/sourceimages/Zinc_02.jpg" - }, - "outSizeX": { - "type": "float", - "value": 2048.0 - }, - "repeatUV": { - "type": "float2", - "value": [ - [ - 10.0, - 10.0 - ] - ] - }, - "outSizeY": { - "type": "float", - "value": 2048.0 - }, - "repeatU": { - "type": "float", - "value": 10.0 - }, - "repeatV": { - "type": "float", - "value": 10.0 - }, - "computedFileTextureNamePattern": { - "type": "string", - "value": "Z:/PFE2019/OPALE/03_WORK/01_ASSET_3D/03_PROPS/BATIMENT_PAUVRE_01/01_FAB/04_LOOKDEV/MAYA/sourceimages/Zinc_02.jpg" - } - }, - "type": "file" - }, - "place2dTexture48": { - "data": {}, - "type": "place2dTexture" - }, - "remapHsv4": { - "data": { - "outColorB": { - "type": "float", - "value": 0.0 - }, - "hue": { - "type": "TdataCompound", - "value": [ - [ - 0.0, - 0.0, - 1.0 - ], - [ - 1.0, - 1.0, - 1.0 - ] - ] - }, - "saturation": { - "type": "TdataCompound", - "value": [ - [ - 0.0, - 0.0, - 1.0 - ], - [ - 1.0, - 0.7400000095367432, - 1.0 - ] - ] - }, - "colorB": { - "type": "float", - "value": 0.0 - }, - "outColorG": { - "type": "float", - "value": 0.0 - }, - "colorG": { - "type": "float", - "value": 0.0 - }, - "color": { - "type": "float3", - "value": [ - [ - 0.0, - 0.0, - 0.0 - ] - ] - }, - "value": { - "type": "TdataCompound", - "value": [ - [ - 0.0, - 0.0, - 1.0 - ], - [ - 1.0, - 1.0, - 1.0 - ] - ] - }, - "outColorR": { - "type": "float", - "value": 0.0 - }, - "outColor": { - "type": "float3", - "value": [ - [ - 0.0, - 0.0, - 0.0 - ] - ] - }, - "colorR": { - "type": "float", - "value": 0.0 - } - }, - "type": "remapHsv" - }, - "place2dTexture52": { - "data": { - "repeatUV": { - "type": "float2", - "value": [ - [ - 5.0, - 5.0 - ] - ] - }, - "repeatU": { - "type": "float", - "value": 5.0 - }, - "repeatV": { - "type": "float", - "value": 5.0 - } - }, - "type": "place2dTexture" - }, - "place2dTexture49": { - "data": { - "repeatUV": { - "type": "float2", - "value": [ - [ - 20.0, - 20.0 - ] - ] - }, - "repeatU": { - "type": "float", - "value": 20.0 - }, - "repeatV": { - "type": "float", - "value": 20.0 - } - }, - "type": "place2dTexture" - }, - "remapHsv3": { - "data": { - "outColorB": { - "type": "float", - "value": 0.0 - }, - "hue": { - "type": "TdataCompound", - "value": [ - [ - 0.0, - 0.0, - 1.0 - ], - [ - 1.0, - 1.0, - 1.0 - ] - ] - }, - "saturation": { - "type": "TdataCompound", - "value": [ - [ - 0.0, - 0.0, - 1.0 - ], - [ - 1.0, - 0.8999999761581421, - 1.0 - ] - ] - }, - "colorB": { - "type": "float", - "value": 0.0 - }, - "outColorG": { - "type": "float", - "value": 0.0 - }, - "colorG": { - "type": "float", - "value": 0.0 - }, - "color": { - "type": "float3", - "value": [ - [ - 0.0, - 0.0, - 0.0 - ] - ] - }, - "value": { - "type": "TdataCompound", - "value": [ - [ - 0.0, - 0.0, - 1.0 - ], - [ - 1.0, - 1.0, - 1.0 - ] - ] - }, - "outColorR": { - "type": "float", - "value": 0.0 - }, - "outColor": { - "type": "float3", - "value": [ - [ - 0.0, - 0.0, - 0.0 - ] - ] - }, - "colorR": { - "type": "float", - "value": 0.0 - } - }, - "type": "remapHsv" - }, - "place2dTexture53": { - "data": { - "repeatUV": { - "type": "float2", - "value": [ - [ - 5.0, - 5.0 - ] - ] - }, - "repeatU": { - "type": "float", - "value": 5.0 - }, - "repeatV": { - "type": "float", - "value": 5.0 - } - }, - "type": "place2dTexture" - }, - "bump2d4": { - "data": { - "bumpDepth": { - "type": "float", - "value": -0.05000000074505806 - }, - "vCoord": { - "type": "float", - "value": 9.999999747378752e-06 - }, - "infoBits": { - "type": "long", - "value": 3 - }, - "uvCoord": { - "type": "float2", - "value": [ - [ - 0.0, - 9.999999747378752e-06 - ] - ] - } - }, - "type": "bump2d" - }, - "aiNoise2": { - "data": { - "scale": { - "type": "float3", - "value": [ - [ - 0.10000000149011612, - 0.10000000149011612, - 0.10000000149011612 - ] - ] - }, - "octaves": { - "type": "long", - "value": 5 - }, - "scaleX": { - "type": "float", - "value": 0.10000000149011612 - }, - "scaleY": { - "type": "float", - "value": 0.10000000149011612 - }, - "scaleZ": { - "type": "float", - "value": 0.10000000149011612 - }, - "lacunarity": { - "type": "float", - "value": 5.0 - } - }, - "type": "aiNoise" - }, - "place2dTexture50": { - "data": {}, - "type": "place2dTexture" - }, - "place2dTexture56": { - "data": {}, - "type": "place2dTexture" - }, - "Zinc_Grey_02_1": { - "data": { - "alphaIsLuminance": { - "type": "bool", - "value": true - }, - "outSize": { - "type": "float2", - "value": [ - [ - 2048.0, - 2048.0 - ] - ] - }, - "fileTextureName": { - "type": "string", - "value": "Z:/PFE2019/OPALE/03_WORK/01_ASSET_3D/03_PROPS/BATIMENT_PAUVRE_01/01_FAB/04_LOOKDEV/MAYA/sourceimages/Zinc_Grey_02.png" - }, - "colorSpace": { - "type": "string", - "value": "Raw" - }, - "outSizeX": { - "type": "float", - "value": 2048.0 - }, - "repeatUV": { - "type": "float2", - "value": [ - [ - 20.0, - 20.0 - ] - ] - }, - "outSizeY": { - "type": "float", - "value": 2048.0 - }, - "repeatU": { - "type": "float", - "value": 20.0 - }, - "repeatV": { - "type": "float", - "value": 20.0 - }, - "computedFileTextureNamePattern": { - "type": "string", - "value": "Z:/PFE2019/OPALE/03_WORK/01_ASSET_3D/03_PROPS/BATIMENT_PAUVRE_01/01_FAB/04_LOOKDEV/MAYA/sourceimages/Zinc_Grey_02.png" - } - }, - "type": "file" - }, - "aiTriplanar3": { - "data": { - "inputR": { - "type": "float", - "value": 0.0 - }, - "scale": { - "type": "float3", - "value": [ - [ - 0.009999999776482582, - 0.009999999776482582, - 0.009999999776482582 - ] - ] - }, - "scaleX": { - "type": "float", - "value": 0.009999999776482582 - }, - "scaleY": { - "type": "float", - "value": 0.009999999776482582 - }, - "scaleZ": { - "type": "float", - "value": 0.009999999776482582 - }, - "inputG": { - "type": "float", - "value": 0.0 - }, - "input": { - "type": "float3", - "value": [ - [ - 0.0, - 0.0, - 1.0 - ] - ] - } - }, - "type": "aiTriplanar" - }, - "aiTriplanar2": { - "data": { - "inputR": { - "type": "float", - "value": 0.9200000166893005 - }, - "scale": { - "type": "float3", - "value": [ - [ - 0.009999999776482582, - 0.009999999776482582, - 0.009999999776482582 - ] - ] - }, - "scaleX": { - "type": "float", - "value": 0.009999999776482582 - }, - "scaleY": { - "type": "float", - "value": 0.009999999776482582 - }, - "scaleZ": { - "type": "float", - "value": 0.009999999776482582 - }, - "input": { - "type": "float3", - "value": [ - [ - 0.9200000166893005, - 1.0, - 1.0 - ] - ] - } - }, - "type": "aiTriplanar" - }, - "aiTriplanar1": { - "data": { - "inputR": { - "type": "float", - "value": 0.0 - }, - "scale": { - "type": "float3", - "value": [ - [ - 0.009999999776482582, - 0.009999999776482582, - 0.009999999776482582 - ] - ] - }, - "scaleX": { - "type": "float", - "value": 0.009999999776482582 - }, - "scaleY": { - "type": "float", - "value": 0.009999999776482582 - }, - "scaleZ": { - "type": "float", - "value": 0.009999999776482582 - }, - "inputB": { - "type": "float", - "value": 0.0 - }, - "inputG": { - "type": "float", - "value": 0.0 - }, - "input": { - "type": "float3", - "value": [ - [ - 0.0, - 0.0, - 0.0 - ] - ] - } - }, - "type": "aiTriplanar" - }, - "blendColors10": { - "data": { - "outputR": { - "type": "float", - "value": 0.0 - }, - "color1": { - "type": "float3", - "value": [ - [ - 0.0, - 0.0, - 0.0 - ] - ] - }, - "color2": { - "type": "float3", - "value": [ - [ - 0.0, - 0.0, - 0.0 - ] - ] - }, - "color1R": { - "type": "float", - "value": 0.0 - }, - "outputB": { - "type": "float", - "value": 0.0 - }, - "output": { - "type": "float3", - "value": [ - [ - 0.0, - 0.0, - 0.0 - ] - ] - }, - "color2B": { - "type": "float", - "value": 0.0 - }, - "blender": { - "type": "float", - "value": 0.0 - } - }, - "type": "blendColors" - }, - "Zinc_Grey_01_1": { - "data": { - "alphaIsLuminance": { - "type": "bool", - "value": true - }, - "outSize": { - "type": "float2", - "value": [ - [ - 2048.0, - 2048.0 - ] - ] - }, - "fileTextureName": { - "type": "string", - "value": "Z:/PFE2019/OPALE/03_WORK/01_ASSET_3D/03_PROPS/BATIMENT_PAUVRE_01/01_FAB/04_LOOKDEV/MAYA/sourceimages/Zinc_Grey_01.png" - }, - "colorSpace": { - "type": "string", - "value": "Raw" - }, - "outSizeY": { - "type": "float", - "value": 2048.0 - }, - "outSizeX": { - "type": "float", - "value": 2048.0 - }, - "computedFileTextureNamePattern": { - "type": "string", - "value": "Z:/PFE2019/OPALE/03_WORK/01_ASSET_3D/03_PROPS/BATIMENT_PAUVRE_01/01_FAB/04_LOOKDEV/MAYA/sourceimages/Zinc_Grey_01.png" - } - }, - "type": "file" - }, - "Zinc_03_Greyscale_1": { - "data": { - "alphaIsLuminance": { - "type": "bool", - "value": true - }, - "outSize": { - "type": "float2", - "value": [ - [ - 2048.0, - 2048.0 - ] - ] - }, - "fileTextureName": { - "type": "string", - "value": "Z:/PFE2019/OPALE/03_WORK/01_ASSET_3D/03_PROPS/BATIMENT_PAUVRE_01/01_FAB/04_LOOKDEV/MAYA/sourceimages/Zinc_03_Greyscale.png" - }, - "colorSpace": { - "type": "string", - "value": "Raw" - }, - "outSizeX": { - "type": "float", - "value": 2048.0 - }, - "repeatUV": { - "type": "float2", - "value": [ - [ - 5.0, - 5.0 - ] - ] - }, - "outSizeY": { - "type": "float", - "value": 2048.0 - }, - "repeatU": { - "type": "float", - "value": 5.0 - }, - "repeatV": { - "type": "float", - "value": 5.0 - }, - "computedFileTextureNamePattern": { - "type": "string", - "value": "Z:/PFE2019/OPALE/03_WORK/01_ASSET_3D/03_PROPS/BATIMENT_PAUVRE_01/01_FAB/04_LOOKDEV/MAYA/sourceimages/Zinc_03_Greyscale.png" - } - }, - "type": "file" - }, - "noise3": { - "data": { - "outColorB": { - "type": "float", - "value": -0.4846820831298828 - }, - "outAlpha": { - "type": "float", - "value": -0.4846820831298828 - }, - "ratio": { - "type": "float", - "value": 1.0349650382995605 - }, - "outColorG": { - "type": "float", - "value": -0.4846820831298828 - }, - "outColorR": { - "type": "float", - "value": -0.4846820831298828 - }, - "outColor": { - "type": "float3", - "value": [ - [ - -0.4846820831298828, - -0.4846820831298828, - -0.4846820831298828 - ] - ] - }, - "frequency": { - "type": "float", - "value": 9.790209770202637 - }, - "frequencyRatio": { - "type": "float", - "value": 1.0 - }, - "depthMax": { - "type": "short", - "value": 8 - }, - "noiseType": { - "type": "enum", - "value": 0 - } - }, - "type": "noise" - }, - "remapHsv6": { - "data": { - "outColorB": { - "type": "float", - "value": 0.0 - }, - "hue": { - "type": "TdataCompound", - "value": [ - [ - 0.0, - 0.0, - 1.0 - ], - [ - 1.0, - 1.0, - 1.0 - ] - ] - }, - "saturation": { - "type": "TdataCompound", - "value": [ - [ - 0.0, - 0.0, - 1.0 - ], - [ - 1.0, - 0.5400000214576721, - 1.0 - ] - ] - }, - "colorB": { - "type": "float", - "value": 0.0 - }, - "outColorG": { - "type": "float", - "value": 0.0 - }, - "colorG": { - "type": "float", - "value": 0.0 - }, - "color": { - "type": "float3", - "value": [ - [ - 0.0, - 0.0, - 0.0 - ] - ] - }, - "value": { - "type": "TdataCompound", - "value": [ - [ - 0.0, - 0.0, - 1.0 - ], - [ - 1.0, - 0.7200000286102295, - 1.0 - ] - ] - }, - "outColorR": { - "type": "float", - "value": 0.0 - }, - "outColor": { - "type": "float3", - "value": [ - [ - 0.0, - 0.0, - 0.0 - ] - ] - }, - "colorR": { - "type": "float", - "value": 0.0 - } - }, - "type": "remapHsv" - }, - "remapHsv5": { - "data": { - "outColorB": { - "type": "float", - "value": 0.0 - }, - "hue": { - "type": "TdataCompound", - "value": [ - [ - 0.0, - 0.0, - 1.0 - ], - [ - 1.0, - 1.0, - 1.0 - ] - ] - }, - "saturation": { - "type": "TdataCompound", - "value": [ - [ - 0.0, - 0.0, - 1.0 - ], - [ - 1.0, - 1.0, - 1.0 - ] - ] - }, - "colorB": { - "type": "float", - "value": 0.0 - }, - "outColorG": { - "type": "float", - "value": 0.0 - }, - "colorG": { - "type": "float", - "value": 0.0 - }, - "color": { - "type": "float3", - "value": [ - [ - 0.0, - 0.0, - 0.0 - ] - ] - }, - "value": { - "type": "TdataCompound", - "value": [ - [ - 0.0, - 0.0, - 1.0 - ], - [ - 1.0, - 1.0, - 1.0 - ] - ] - }, - "outColorR": { - "type": "float", - "value": 0.0 - }, - "outColor": { - "type": "float3", - "value": [ - [ - 0.0, - 0.0, - 0.0 - ] - ] - }, - "colorR": { - "type": "float", - "value": 0.0 - } - }, - "type": "remapHsv" - }, - "blendColors4": { - "data": { - "outputR": { - "type": "float", - "value": 0.0 - }, - "color1": { - "type": "float3", - "value": [ - [ - 0.0, - 0.0, - 0.0 - ] - ] - }, - "color2": { - "type": "float3", - "value": [ - [ - 0.0, - 0.0, - 0.0 - ] - ] - }, - "color1R": { - "type": "float", - "value": 0.0 - }, - "outputB": { - "type": "float", - "value": 0.0 - }, - "output": { - "type": "float3", - "value": [ - [ - 0.0, - 0.0, - 0.0 - ] - ] - }, - "color2B": { - "type": "float", - "value": 0.0 - }, - "blender": { - "type": "float", - "value": 0.0 - } - }, - "type": "blendColors" - }, - "blendColors3": { - "data": { - "outputR": { - "type": "float", - "value": 0.0 - }, - "color1": { - "type": "float3", - "value": [ - [ - 0.0, - 0.0, - 0.0 - ] - ] - }, - "color2": { - "type": "float3", - "value": [ - [ - 0.0, - 0.0, - 0.0 - ] - ] - }, - "color1R": { - "type": "float", - "value": 0.0 - }, - "outputB": { - "type": "float", - "value": 0.0 - }, - "output": { - "type": "float3", - "value": [ - [ - 0.0, - 0.0, - 0.0 - ] - ] - }, - "color2B": { - "type": "float", - "value": 0.0 - }, - "blender": { - "type": "float", - "value": 0.0 - } - }, - "type": "blendColors" - }, - "blendColors9": { - "data": { - "outputR": { - "type": "float", - "value": 0.0 - }, - "color1": { - "type": "float3", - "value": [ - [ - 0.0, - 0.0, - 0.0 - ] - ] - }, - "color2": { - "type": "float3", - "value": [ - [ - 0.0, - 0.0, - 0.0 - ] - ] - }, - "color1R": { - "type": "float", - "value": 0.0 - }, - "outputB": { - "type": "float", - "value": 0.0 - }, - "output": { - "type": "float3", - "value": [ - [ - 0.0, - 0.0, - 0.0 - ] - ] - }, - "color2B": { - "type": "float", - "value": 0.0 - }, - "blender": { - "type": "float", - "value": 0.0 - } - }, - "type": "blendColors" - } - } - }, - "aiUtility1SG": { - "connections": [], - "nodes": { - "lambert1": { - "data": { - "outColorR": { - "type": "float", - "value": 1.7000000476837158 - }, - "outColor": { - "type": "float3", - "value": [ - [ - 1.7000000476837158, - 1.7000000476837158, - 1.7000000476837158 - ] - ] - }, - "outColorB": { - "type": "float", - "value": 1.7000000476837158 - }, - "outColorG": { - "type": "float", - "value": 1.7000000476837158 - } - }, - "type": "lambert" - } - } - }, - "pasted__aiUtility1SG": { - "connections": [], - "nodes": { - "lambert1": { - "data": { - "outColorR": { - "type": "float", - "value": 1.7000000476837158 - }, - "outColor": { - "type": "float3", - "value": [ - [ - 1.7000000476837158, - 1.7000000476837158, - 1.7000000476837158 - ] - ] - }, - "outColorB": { - "type": "float", - "value": 1.7000000476837158 - }, - "outColorG": { - "type": "float", - "value": 1.7000000476837158 - } - }, - "type": "lambert" - } - } - }, - "aiMixShader1SG": { - "connections": [ - { - "to": "SH_Quartier_Pauvre", - "toAttribute": "mix", - "toAttributeComplete": "SH_Quartier_Pauvre.mix", - "from": "multiplyDivide1", - "fromAttribute": "multiplyDivide1.outputX" - }, - { - "to": "SH_Quartier_Pauvre", - "toAttribute": "shader1", - "toAttributeComplete": "SH_Quartier_Pauvre.shader1", - "from": "SH_Brick", - "fromAttribute": "SH_Brick.outColor" - }, - { - "to": "SH_Quartier_Pauvre", - "toAttribute": "shader1R", - "toAttributeComplete": "SH_Quartier_Pauvre.shader1R", - "from": "SH_Brick", - "fromAttribute": "SH_Brick.outColor" - }, - { - "to": "SH_Quartier_Pauvre", - "toAttribute": "shader1G", - "toAttributeComplete": "SH_Quartier_Pauvre.shader1G", - "from": "SH_Brick", - "fromAttribute": "SH_Brick.outColor" - }, - { - "to": "SH_Quartier_Pauvre", - "toAttribute": "shader1B", - "toAttributeComplete": "SH_Quartier_Pauvre.shader1B", - "from": "SH_Brick", - "fromAttribute": "SH_Brick.outColor" - }, - { - "to": "SH_Quartier_Pauvre", - "toAttribute": "shader2", - "toAttributeComplete": "SH_Quartier_Pauvre.shader2", - "from": "SH_Brick_Dest", - "fromAttribute": "SH_Brick_Dest.outColor" - }, - { - "to": "SH_Quartier_Pauvre", - "toAttribute": "shader2R", - "toAttributeComplete": "SH_Quartier_Pauvre.shader2R", - "from": "SH_Brick_Dest", - "fromAttribute": "SH_Brick_Dest.outColor" - }, - { - "to": "SH_Quartier_Pauvre", - "toAttribute": "shader2G", - "toAttributeComplete": "SH_Quartier_Pauvre.shader2G", - "from": "SH_Brick_Dest", - "fromAttribute": "SH_Brick_Dest.outColor" - }, - { - "to": "SH_Quartier_Pauvre", - "toAttribute": "shader2B", - "toAttributeComplete": "SH_Quartier_Pauvre.shader2B", - "from": "SH_Brick_Dest", - "fromAttribute": "SH_Brick_Dest.outColor" - }, - { - "to": "multiplyDivide1", - "toAttribute": "input1", - "toAttributeComplete": "multiplyDivide1.input1", - "from": "ramp1", - "fromAttribute": "ramp1.outColor" - }, - { - "to": "multiplyDivide1", - "toAttribute": "input1X", - "toAttributeComplete": "multiplyDivide1.input1X", - "from": "ramp1", - "fromAttribute": "ramp1.outColor" - }, - { - "to": "multiplyDivide1", - "toAttribute": "input1Y", - "toAttributeComplete": "multiplyDivide1.input1Y", - "from": "ramp1", - "fromAttribute": "ramp1.outColor" - }, - { - "to": "multiplyDivide1", - "toAttribute": "input1Z", - "toAttributeComplete": "multiplyDivide1.input1Z", - "from": "ramp1", - "fromAttribute": "ramp1.outColor" - }, - { - "to": "multiplyDivide1", - "toAttribute": "input2", - "toAttributeComplete": "multiplyDivide1.input2", - "from": "blendColors2", - "fromAttribute": "blendColors2.output" - }, - { - "to": "multiplyDivide1", - "toAttribute": "input2X", - "toAttributeComplete": "multiplyDivide1.input2X", - "from": "blendColors2", - "fromAttribute": "blendColors2.output" - }, - { - "to": "multiplyDivide1", - "toAttribute": "input2Y", - "toAttributeComplete": "multiplyDivide1.input2Y", - "from": "blendColors2", - "fromAttribute": "blendColors2.output" - }, - { - "to": "multiplyDivide1", - "toAttribute": "input2Z", - "toAttributeComplete": "multiplyDivide1.input2Z", - "from": "blendColors2", - "fromAttribute": "blendColors2.output" - }, - { - "to": "ramp1", - "toAttribute": "uvCoord", - "toAttributeComplete": "ramp1.uvCoord", - "from": "place2dTexture39", - "fromAttribute": "place2dTexture39.outUV" - }, - { - "to": "ramp1", - "toAttribute": "uCoord", - "toAttributeComplete": "ramp1.uCoord", - "from": "place2dTexture39", - "fromAttribute": "place2dTexture39.outUV" - }, - { - "to": "ramp1", - "toAttribute": "vCoord", - "toAttributeComplete": "ramp1.vCoord", - "from": "place2dTexture39", - "fromAttribute": "place2dTexture39.outUV" - }, - { - "to": "ramp1", - "toAttribute": "uvFilterSize", - "toAttributeComplete": "ramp1.uvFilterSize", - "from": "place2dTexture39", - "fromAttribute": "place2dTexture39.outUvFilterSize" - }, - { - "to": "ramp1", - "toAttribute": "uvFilterSizeX", - "toAttributeComplete": "ramp1.uvFilterSizeX", - "from": "place2dTexture39", - "fromAttribute": "place2dTexture39.outUvFilterSize" - }, - { - "to": "ramp1", - "toAttribute": "uvFilterSizeY", - "toAttributeComplete": "ramp1.uvFilterSizeY", - "from": "place2dTexture39", - "fromAttribute": "place2dTexture39.outUvFilterSize" - }, - { - "to": "blendColors2", - "toAttribute": "color1", - "toAttributeComplete": "blendColors2.color1", - "from": "noise1", - "fromAttribute": "noise1.outColor" - }, - { - "to": "blendColors2", - "toAttribute": "color1R", - "toAttributeComplete": "blendColors2.color1R", - "from": "noise1", - "fromAttribute": "noise1.outColor" - }, - { - "to": "blendColors2", - "toAttribute": "color1G", - "toAttributeComplete": "blendColors2.color1G", - "from": "noise1", - "fromAttribute": "noise1.outColor" - }, - { - "to": "blendColors2", - "toAttribute": "color1B", - "toAttributeComplete": "blendColors2.color1B", - "from": "noise1", - "fromAttribute": "noise1.outColor" - }, - { - "to": "blendColors2", - "toAttribute": "color2", - "toAttributeComplete": "blendColors2.color2", - "from": "pasted__noise1", - "fromAttribute": "pasted__noise1.outColor" - }, - { - "to": "blendColors2", - "toAttribute": "color2R", - "toAttributeComplete": "blendColors2.color2R", - "from": "pasted__noise1", - "fromAttribute": "pasted__noise1.outColor" - }, - { - "to": "blendColors2", - "toAttribute": "color2G", - "toAttributeComplete": "blendColors2.color2G", - "from": "pasted__noise1", - "fromAttribute": "pasted__noise1.outColor" - }, - { - "to": "blendColors2", - "toAttribute": "color2B", - "toAttributeComplete": "blendColors2.color2B", - "from": "pasted__noise1", - "fromAttribute": "pasted__noise1.outColor" - }, - { - "to": "noise1", - "toAttribute": "uvCoord", - "toAttributeComplete": "noise1.uvCoord", - "from": "place2dTexture40", - "fromAttribute": "place2dTexture40.outUV" - }, - { - "to": "noise1", - "toAttribute": "uCoord", - "toAttributeComplete": "noise1.uCoord", - "from": "place2dTexture40", - "fromAttribute": "place2dTexture40.outUV" - }, - { - "to": "noise1", - "toAttribute": "vCoord", - "toAttributeComplete": "noise1.vCoord", - "from": "place2dTexture40", - "fromAttribute": "place2dTexture40.outUV" - }, - { - "to": "noise1", - "toAttribute": "uvFilterSize", - "toAttributeComplete": "noise1.uvFilterSize", - "from": "place2dTexture40", - "fromAttribute": "place2dTexture40.outUvFilterSize" - }, - { - "to": "noise1", - "toAttribute": "uvFilterSizeX", - "toAttributeComplete": "noise1.uvFilterSizeX", - "from": "place2dTexture40", - "fromAttribute": "place2dTexture40.outUvFilterSize" - }, - { - "to": "noise1", - "toAttribute": "uvFilterSizeY", - "toAttributeComplete": "noise1.uvFilterSizeY", - "from": "place2dTexture40", - "fromAttribute": "place2dTexture40.outUvFilterSize" - }, - { - "to": "pasted__noise1", - "toAttribute": "uvCoord", - "toAttributeComplete": "pasted__noise1.uvCoord", - "from": "pasted__place2dTexture40", - "fromAttribute": "pasted__place2dTexture40.outUV" - }, - { - "to": "pasted__noise1", - "toAttribute": "uCoord", - "toAttributeComplete": "pasted__noise1.uCoord", - "from": "pasted__place2dTexture40", - "fromAttribute": "pasted__place2dTexture40.outUV" - }, - { - "to": "pasted__noise1", - "toAttribute": "vCoord", - "toAttributeComplete": "pasted__noise1.vCoord", - "from": "pasted__place2dTexture40", - "fromAttribute": "pasted__place2dTexture40.outUV" - }, - { - "to": "pasted__noise1", - "toAttribute": "uvFilterSize", - "toAttributeComplete": "pasted__noise1.uvFilterSize", - "from": "pasted__place2dTexture40", - "fromAttribute": "pasted__place2dTexture40.outUvFilterSize" - }, - { - "to": "pasted__noise1", - "toAttribute": "uvFilterSizeX", - "toAttributeComplete": "pasted__noise1.uvFilterSizeX", - "from": "pasted__place2dTexture40", - "fromAttribute": "pasted__place2dTexture40.outUvFilterSize" - }, - { - "to": "pasted__noise1", - "toAttribute": "uvFilterSizeY", - "toAttributeComplete": "pasted__noise1.uvFilterSizeY", - "from": "pasted__place2dTexture40", - "fromAttribute": "pasted__place2dTexture40.outUvFilterSize" - }, - { - "to": "SH_Brick", - "toAttribute": "normalCamera", - "toAttributeComplete": "SH_Brick.normalCamera", - "from": "bump2d1", - "fromAttribute": "bump2d1.outNormal" - }, - { - "to": "SH_Brick", - "toAttribute": "normalCameraX", - "toAttributeComplete": "SH_Brick.normalCameraX", - "from": "bump2d1", - "fromAttribute": "bump2d1.outNormal" - }, - { - "to": "SH_Brick", - "toAttribute": "normalCameraY", - "toAttributeComplete": "SH_Brick.normalCameraY", - "from": "bump2d1", - "fromAttribute": "bump2d1.outNormal" - }, - { - "to": "SH_Brick", - "toAttribute": "normalCameraZ", - "toAttributeComplete": "SH_Brick.normalCameraZ", - "from": "bump2d1", - "fromAttribute": "bump2d1.outNormal" - }, - { - "to": "SH_Brick", - "toAttribute": "baseColor", - "toAttributeComplete": "SH_Brick.baseColor", - "from": "blendColors5", - "fromAttribute": "blendColors5.output" - }, - { - "to": "SH_Brick", - "toAttribute": "baseColorR", - "toAttributeComplete": "SH_Brick.baseColorR", - "from": "blendColors5", - "fromAttribute": "blendColors5.output" - }, - { - "to": "SH_Brick", - "toAttribute": "baseColorG", - "toAttributeComplete": "SH_Brick.baseColorG", - "from": "blendColors5", - "fromAttribute": "blendColors5.output" - }, - { - "to": "SH_Brick", - "toAttribute": "baseColorB", - "toAttributeComplete": "SH_Brick.baseColorB", - "from": "blendColors5", - "fromAttribute": "blendColors5.output" - }, - { - "to": "SH_Brick", - "toAttribute": "specularRoughness", - "toAttributeComplete": "SH_Brick.specularRoughness", - "from": "remapValue4", - "fromAttribute": "remapValue4.outValue" - }, - { - "to": "blendColors5", - "toAttribute": "blender", - "toAttributeComplete": "blendColors5.blender", - "from": "remapValue3", - "fromAttribute": "remapValue3.outValue" - }, - { - "to": "blendColors5", - "toAttribute": "color1", - "toAttributeComplete": "blendColors5.color1", - "from": "Brick_Facade_STL_1", - "fromAttribute": "Brick_Facade_STL_1.outColor" - }, - { - "to": "blendColors5", - "toAttribute": "color1R", - "toAttributeComplete": "blendColors5.color1R", - "from": "Brick_Facade_STL_1", - "fromAttribute": "Brick_Facade_STL_1.outColor" - }, - { - "to": "blendColors5", - "toAttribute": "color1G", - "toAttributeComplete": "blendColors5.color1G", - "from": "Brick_Facade_STL_1", - "fromAttribute": "Brick_Facade_STL_1.outColor" - }, - { - "to": "blendColors5", - "toAttribute": "color1B", - "toAttributeComplete": "blendColors5.color1B", - "from": "Brick_Facade_STL_1", - "fromAttribute": "Brick_Facade_STL_1.outColor" - }, - { - "to": "blendColors5", - "toAttribute": "color2", - "toAttributeComplete": "blendColors5.color2", - "from": "Facade_Texture_build_02_1", - "fromAttribute": "Facade_Texture_build_02_1.outColor" - }, - { - "to": "blendColors5", - "toAttribute": "color2R", - "toAttributeComplete": "blendColors5.color2R", - "from": "Facade_Texture_build_02_1", - "fromAttribute": "Facade_Texture_build_02_1.outColor" - }, - { - "to": "blendColors5", - "toAttribute": "color2G", - "toAttributeComplete": "blendColors5.color2G", - "from": "Facade_Texture_build_02_1", - "fromAttribute": "Facade_Texture_build_02_1.outColor" - }, - { - "to": "blendColors5", - "toAttribute": "color2B", - "toAttributeComplete": "blendColors5.color2B", - "from": "Facade_Texture_build_02_1", - "fromAttribute": "Facade_Texture_build_02_1.outColor" - }, - { - "to": "Brick_Facade_STL_1", - "toAttribute": "uvCoord", - "toAttributeComplete": "Brick_Facade_STL_1.uvCoord", - "from": "place2dTexture54", - "fromAttribute": "place2dTexture54.outUV" - }, - { - "to": "Brick_Facade_STL_1", - "toAttribute": "uCoord", - "toAttributeComplete": "Brick_Facade_STL_1.uCoord", - "from": "place2dTexture54", - "fromAttribute": "place2dTexture54.outUV" - }, - { - "to": "Brick_Facade_STL_1", - "toAttribute": "vCoord", - "toAttributeComplete": "Brick_Facade_STL_1.vCoord", - "from": "place2dTexture54", - "fromAttribute": "place2dTexture54.outUV" - }, - { - "to": "Brick_Facade_STL_1", - "toAttribute": "uvFilterSize", - "toAttributeComplete": "Brick_Facade_STL_1.uvFilterSize", - "from": "place2dTexture54", - "fromAttribute": "place2dTexture54.outUvFilterSize" - }, - { - "to": "Brick_Facade_STL_1", - "toAttribute": "uvFilterSizeX", - "toAttributeComplete": "Brick_Facade_STL_1.uvFilterSizeX", - "from": "place2dTexture54", - "fromAttribute": "place2dTexture54.outUvFilterSize" - }, - { - "to": "Brick_Facade_STL_1", - "toAttribute": "uvFilterSizeY", - "toAttributeComplete": "Brick_Facade_STL_1.uvFilterSizeY", - "from": "place2dTexture54", - "fromAttribute": "place2dTexture54.outUvFilterSize" - }, - { - "to": "Brick_Facade_STL_1", - "toAttribute": "coverage", - "toAttributeComplete": "Brick_Facade_STL_1.coverage", - "from": "place2dTexture54", - "fromAttribute": "place2dTexture54.coverage" - }, - { - "to": "Brick_Facade_STL_1", - "toAttribute": "coverageU", - "toAttributeComplete": "Brick_Facade_STL_1.coverageU", - "from": "place2dTexture54", - "fromAttribute": "place2dTexture54.coverage" - }, - { - "to": "Brick_Facade_STL_1", - "toAttribute": "coverageV", - "toAttributeComplete": "Brick_Facade_STL_1.coverageV", - "from": "place2dTexture54", - "fromAttribute": "place2dTexture54.coverage" - }, - { - "to": "Brick_Facade_STL_1", - "toAttribute": "translateFrame", - "toAttributeComplete": "Brick_Facade_STL_1.translateFrame", - "from": "place2dTexture54", - "fromAttribute": "place2dTexture54.translateFrame" - }, - { - "to": "Brick_Facade_STL_1", - "toAttribute": "translateFrameU", - "toAttributeComplete": "Brick_Facade_STL_1.translateFrameU", - "from": "place2dTexture54", - "fromAttribute": "place2dTexture54.translateFrame" - }, - { - "to": "Brick_Facade_STL_1", - "toAttribute": "translateFrameV", - "toAttributeComplete": "Brick_Facade_STL_1.translateFrameV", - "from": "place2dTexture54", - "fromAttribute": "place2dTexture54.translateFrame" - }, - { - "to": "Brick_Facade_STL_1", - "toAttribute": "rotateFrame", - "toAttributeComplete": "Brick_Facade_STL_1.rotateFrame", - "from": "place2dTexture54", - "fromAttribute": "place2dTexture54.rotateFrame" - }, - { - "to": "Brick_Facade_STL_1", - "toAttribute": "mirrorU", - "toAttributeComplete": "Brick_Facade_STL_1.mirrorU", - "from": "place2dTexture54", - "fromAttribute": "place2dTexture54.mirrorU" - }, - { - "to": "Brick_Facade_STL_1", - "toAttribute": "mirrorV", - "toAttributeComplete": "Brick_Facade_STL_1.mirrorV", - "from": "place2dTexture54", - "fromAttribute": "place2dTexture54.mirrorV" - }, - { - "to": "Brick_Facade_STL_1", - "toAttribute": "stagger", - "toAttributeComplete": "Brick_Facade_STL_1.stagger", - "from": "place2dTexture54", - "fromAttribute": "place2dTexture54.stagger" - }, - { - "to": "Brick_Facade_STL_1", - "toAttribute": "wrapU", - "toAttributeComplete": "Brick_Facade_STL_1.wrapU", - "from": "place2dTexture54", - "fromAttribute": "place2dTexture54.wrapU" - }, - { - "to": "Brick_Facade_STL_1", - "toAttribute": "wrapV", - "toAttributeComplete": "Brick_Facade_STL_1.wrapV", - "from": "place2dTexture54", - "fromAttribute": "place2dTexture54.wrapV" - }, - { - "to": "Brick_Facade_STL_1", - "toAttribute": "repeatUV", - "toAttributeComplete": "Brick_Facade_STL_1.repeatUV", - "from": "place2dTexture54", - "fromAttribute": "place2dTexture54.repeatUV" - }, - { - "to": "Brick_Facade_STL_1", - "toAttribute": "repeatU", - "toAttributeComplete": "Brick_Facade_STL_1.repeatU", - "from": "place2dTexture54", - "fromAttribute": "place2dTexture54.repeatUV" - }, - { - "to": "Brick_Facade_STL_1", - "toAttribute": "repeatV", - "toAttributeComplete": "Brick_Facade_STL_1.repeatV", - "from": "place2dTexture54", - "fromAttribute": "place2dTexture54.repeatUV" - }, - { - "to": "Brick_Facade_STL_1", - "toAttribute": "offset", - "toAttributeComplete": "Brick_Facade_STL_1.offset", - "from": "place2dTexture54", - "fromAttribute": "place2dTexture54.offset" - }, - { - "to": "Brick_Facade_STL_1", - "toAttribute": "offsetU", - "toAttributeComplete": "Brick_Facade_STL_1.offsetU", - "from": "place2dTexture54", - "fromAttribute": "place2dTexture54.offset" - }, - { - "to": "Brick_Facade_STL_1", - "toAttribute": "offsetV", - "toAttributeComplete": "Brick_Facade_STL_1.offsetV", - "from": "place2dTexture54", - "fromAttribute": "place2dTexture54.offset" - }, - { - "to": "Brick_Facade_STL_1", - "toAttribute": "rotateUV", - "toAttributeComplete": "Brick_Facade_STL_1.rotateUV", - "from": "place2dTexture54", - "fromAttribute": "place2dTexture54.rotateUV" - }, - { - "to": "Brick_Facade_STL_1", - "toAttribute": "noiseUV", - "toAttributeComplete": "Brick_Facade_STL_1.noiseUV", - "from": "place2dTexture54", - "fromAttribute": "place2dTexture54.noiseUV" - }, - { - "to": "Brick_Facade_STL_1", - "toAttribute": "noiseU", - "toAttributeComplete": "Brick_Facade_STL_1.noiseU", - "from": "place2dTexture54", - "fromAttribute": "place2dTexture54.noiseUV" - }, - { - "to": "Brick_Facade_STL_1", - "toAttribute": "noiseV", - "toAttributeComplete": "Brick_Facade_STL_1.noiseV", - "from": "place2dTexture54", - "fromAttribute": "place2dTexture54.noiseUV" - }, - { - "to": "Brick_Facade_STL_1", - "toAttribute": "vertexCameraOne", - "toAttributeComplete": "Brick_Facade_STL_1.vertexCameraOne", - "from": "place2dTexture54", - "fromAttribute": "place2dTexture54.vertexCameraOne" - }, - { - "to": "Brick_Facade_STL_1", - "toAttribute": "vertexCameraOneX", - "toAttributeComplete": "Brick_Facade_STL_1.vertexCameraOneX", - "from": "place2dTexture54", - "fromAttribute": "place2dTexture54.vertexCameraOne" - }, - { - "to": "Brick_Facade_STL_1", - "toAttribute": "vertexCameraOneY", - "toAttributeComplete": "Brick_Facade_STL_1.vertexCameraOneY", - "from": "place2dTexture54", - "fromAttribute": "place2dTexture54.vertexCameraOne" - }, - { - "to": "Brick_Facade_STL_1", - "toAttribute": "vertexCameraOneZ", - "toAttributeComplete": "Brick_Facade_STL_1.vertexCameraOneZ", - "from": "place2dTexture54", - "fromAttribute": "place2dTexture54.vertexCameraOne" - }, - { - "to": "Brick_Facade_STL_1", - "toAttribute": "vertexUvOne", - "toAttributeComplete": "Brick_Facade_STL_1.vertexUvOne", - "from": "place2dTexture54", - "fromAttribute": "place2dTexture54.vertexUvOne" - }, - { - "to": "Brick_Facade_STL_1", - "toAttribute": "vertexUvOneU", - "toAttributeComplete": "Brick_Facade_STL_1.vertexUvOneU", - "from": "place2dTexture54", - "fromAttribute": "place2dTexture54.vertexUvOne" - }, - { - "to": "Brick_Facade_STL_1", - "toAttribute": "vertexUvOneV", - "toAttributeComplete": "Brick_Facade_STL_1.vertexUvOneV", - "from": "place2dTexture54", - "fromAttribute": "place2dTexture54.vertexUvOne" - }, - { - "to": "Brick_Facade_STL_1", - "toAttribute": "vertexUvTwo", - "toAttributeComplete": "Brick_Facade_STL_1.vertexUvTwo", - "from": "place2dTexture54", - "fromAttribute": "place2dTexture54.vertexUvTwo" - }, - { - "to": "Brick_Facade_STL_1", - "toAttribute": "vertexUvTwoU", - "toAttributeComplete": "Brick_Facade_STL_1.vertexUvTwoU", - "from": "place2dTexture54", - "fromAttribute": "place2dTexture54.vertexUvTwo" - }, - { - "to": "Brick_Facade_STL_1", - "toAttribute": "vertexUvTwoV", - "toAttributeComplete": "Brick_Facade_STL_1.vertexUvTwoV", - "from": "place2dTexture54", - "fromAttribute": "place2dTexture54.vertexUvTwo" - }, - { - "to": "Brick_Facade_STL_1", - "toAttribute": "vertexUvThree", - "toAttributeComplete": "Brick_Facade_STL_1.vertexUvThree", - "from": "place2dTexture54", - "fromAttribute": "place2dTexture54.vertexUvThree" - }, - { - "to": "Brick_Facade_STL_1", - "toAttribute": "vertexUvThreeU", - "toAttributeComplete": "Brick_Facade_STL_1.vertexUvThreeU", - "from": "place2dTexture54", - "fromAttribute": "place2dTexture54.vertexUvThree" - }, - { - "to": "Brick_Facade_STL_1", - "toAttribute": "vertexUvThreeV", - "toAttributeComplete": "Brick_Facade_STL_1.vertexUvThreeV", - "from": "place2dTexture54", - "fromAttribute": "place2dTexture54.vertexUvThree" - }, - { - "to": "Facade_Texture_build_02_1", - "toAttribute": "uvCoord", - "toAttributeComplete": "Facade_Texture_build_02_1.uvCoord", - "from": "place2dTexture43", - "fromAttribute": "place2dTexture43.outUV" - }, - { - "to": "Facade_Texture_build_02_1", - "toAttribute": "uCoord", - "toAttributeComplete": "Facade_Texture_build_02_1.uCoord", - "from": "place2dTexture43", - "fromAttribute": "place2dTexture43.outUV" - }, - { - "to": "Facade_Texture_build_02_1", - "toAttribute": "vCoord", - "toAttributeComplete": "Facade_Texture_build_02_1.vCoord", - "from": "place2dTexture43", - "fromAttribute": "place2dTexture43.outUV" - }, - { - "to": "Facade_Texture_build_02_1", - "toAttribute": "uvFilterSize", - "toAttributeComplete": "Facade_Texture_build_02_1.uvFilterSize", - "from": "place2dTexture43", - "fromAttribute": "place2dTexture43.outUvFilterSize" - }, - { - "to": "Facade_Texture_build_02_1", - "toAttribute": "uvFilterSizeX", - "toAttributeComplete": "Facade_Texture_build_02_1.uvFilterSizeX", - "from": "place2dTexture43", - "fromAttribute": "place2dTexture43.outUvFilterSize" - }, - { - "to": "Facade_Texture_build_02_1", - "toAttribute": "uvFilterSizeY", - "toAttributeComplete": "Facade_Texture_build_02_1.uvFilterSizeY", - "from": "place2dTexture43", - "fromAttribute": "place2dTexture43.outUvFilterSize" - }, - { - "to": "Facade_Texture_build_02_1", - "toAttribute": "coverage", - "toAttributeComplete": "Facade_Texture_build_02_1.coverage", - "from": "place2dTexture43", - "fromAttribute": "place2dTexture43.coverage" - }, - { - "to": "Facade_Texture_build_02_1", - "toAttribute": "coverageU", - "toAttributeComplete": "Facade_Texture_build_02_1.coverageU", - "from": "place2dTexture43", - "fromAttribute": "place2dTexture43.coverage" - }, - { - "to": "Facade_Texture_build_02_1", - "toAttribute": "coverageV", - "toAttributeComplete": "Facade_Texture_build_02_1.coverageV", - "from": "place2dTexture43", - "fromAttribute": "place2dTexture43.coverage" - }, - { - "to": "Facade_Texture_build_02_1", - "toAttribute": "translateFrame", - "toAttributeComplete": "Facade_Texture_build_02_1.translateFrame", - "from": "place2dTexture43", - "fromAttribute": "place2dTexture43.translateFrame" - }, - { - "to": "Facade_Texture_build_02_1", - "toAttribute": "translateFrameU", - "toAttributeComplete": "Facade_Texture_build_02_1.translateFrameU", - "from": "place2dTexture43", - "fromAttribute": "place2dTexture43.translateFrame" - }, - { - "to": "Facade_Texture_build_02_1", - "toAttribute": "translateFrameV", - "toAttributeComplete": "Facade_Texture_build_02_1.translateFrameV", - "from": "place2dTexture43", - "fromAttribute": "place2dTexture43.translateFrame" - }, - { - "to": "Facade_Texture_build_02_1", - "toAttribute": "rotateFrame", - "toAttributeComplete": "Facade_Texture_build_02_1.rotateFrame", - "from": "place2dTexture43", - "fromAttribute": "place2dTexture43.rotateFrame" - }, - { - "to": "Facade_Texture_build_02_1", - "toAttribute": "mirrorU", - "toAttributeComplete": "Facade_Texture_build_02_1.mirrorU", - "from": "place2dTexture43", - "fromAttribute": "place2dTexture43.mirrorU" - }, - { - "to": "Facade_Texture_build_02_1", - "toAttribute": "mirrorV", - "toAttributeComplete": "Facade_Texture_build_02_1.mirrorV", - "from": "place2dTexture43", - "fromAttribute": "place2dTexture43.mirrorV" - }, - { - "to": "Facade_Texture_build_02_1", - "toAttribute": "stagger", - "toAttributeComplete": "Facade_Texture_build_02_1.stagger", - "from": "place2dTexture43", - "fromAttribute": "place2dTexture43.stagger" - }, - { - "to": "Facade_Texture_build_02_1", - "toAttribute": "wrapU", - "toAttributeComplete": "Facade_Texture_build_02_1.wrapU", - "from": "place2dTexture43", - "fromAttribute": "place2dTexture43.wrapU" - }, - { - "to": "Facade_Texture_build_02_1", - "toAttribute": "wrapV", - "toAttributeComplete": "Facade_Texture_build_02_1.wrapV", - "from": "place2dTexture43", - "fromAttribute": "place2dTexture43.wrapV" - }, - { - "to": "Facade_Texture_build_02_1", - "toAttribute": "repeatUV", - "toAttributeComplete": "Facade_Texture_build_02_1.repeatUV", - "from": "place2dTexture43", - "fromAttribute": "place2dTexture43.repeatUV" - }, - { - "to": "Facade_Texture_build_02_1", - "toAttribute": "repeatU", - "toAttributeComplete": "Facade_Texture_build_02_1.repeatU", - "from": "place2dTexture43", - "fromAttribute": "place2dTexture43.repeatUV" - }, - { - "to": "Facade_Texture_build_02_1", - "toAttribute": "repeatV", - "toAttributeComplete": "Facade_Texture_build_02_1.repeatV", - "from": "place2dTexture43", - "fromAttribute": "place2dTexture43.repeatUV" - }, - { - "to": "Facade_Texture_build_02_1", - "toAttribute": "offset", - "toAttributeComplete": "Facade_Texture_build_02_1.offset", - "from": "place2dTexture43", - "fromAttribute": "place2dTexture43.offset" - }, - { - "to": "Facade_Texture_build_02_1", - "toAttribute": "offsetU", - "toAttributeComplete": "Facade_Texture_build_02_1.offsetU", - "from": "place2dTexture43", - "fromAttribute": "place2dTexture43.offset" - }, - { - "to": "Facade_Texture_build_02_1", - "toAttribute": "offsetV", - "toAttributeComplete": "Facade_Texture_build_02_1.offsetV", - "from": "place2dTexture43", - "fromAttribute": "place2dTexture43.offset" - }, - { - "to": "Facade_Texture_build_02_1", - "toAttribute": "rotateUV", - "toAttributeComplete": "Facade_Texture_build_02_1.rotateUV", - "from": "place2dTexture43", - "fromAttribute": "place2dTexture43.rotateUV" - }, - { - "to": "Facade_Texture_build_02_1", - "toAttribute": "noiseUV", - "toAttributeComplete": "Facade_Texture_build_02_1.noiseUV", - "from": "place2dTexture43", - "fromAttribute": "place2dTexture43.noiseUV" - }, - { - "to": "Facade_Texture_build_02_1", - "toAttribute": "noiseU", - "toAttributeComplete": "Facade_Texture_build_02_1.noiseU", - "from": "place2dTexture43", - "fromAttribute": "place2dTexture43.noiseUV" - }, - { - "to": "Facade_Texture_build_02_1", - "toAttribute": "noiseV", - "toAttributeComplete": "Facade_Texture_build_02_1.noiseV", - "from": "place2dTexture43", - "fromAttribute": "place2dTexture43.noiseUV" - }, - { - "to": "Facade_Texture_build_02_1", - "toAttribute": "vertexCameraOne", - "toAttributeComplete": "Facade_Texture_build_02_1.vertexCameraOne", - "from": "place2dTexture43", - "fromAttribute": "place2dTexture43.vertexCameraOne" - }, - { - "to": "Facade_Texture_build_02_1", - "toAttribute": "vertexCameraOneX", - "toAttributeComplete": "Facade_Texture_build_02_1.vertexCameraOneX", - "from": "place2dTexture43", - "fromAttribute": "place2dTexture43.vertexCameraOne" - }, - { - "to": "Facade_Texture_build_02_1", - "toAttribute": "vertexCameraOneY", - "toAttributeComplete": "Facade_Texture_build_02_1.vertexCameraOneY", - "from": "place2dTexture43", - "fromAttribute": "place2dTexture43.vertexCameraOne" - }, - { - "to": "Facade_Texture_build_02_1", - "toAttribute": "vertexCameraOneZ", - "toAttributeComplete": "Facade_Texture_build_02_1.vertexCameraOneZ", - "from": "place2dTexture43", - "fromAttribute": "place2dTexture43.vertexCameraOne" - }, - { - "to": "Facade_Texture_build_02_1", - "toAttribute": "vertexUvOne", - "toAttributeComplete": "Facade_Texture_build_02_1.vertexUvOne", - "from": "place2dTexture43", - "fromAttribute": "place2dTexture43.vertexUvOne" - }, - { - "to": "Facade_Texture_build_02_1", - "toAttribute": "vertexUvOneU", - "toAttributeComplete": "Facade_Texture_build_02_1.vertexUvOneU", - "from": "place2dTexture43", - "fromAttribute": "place2dTexture43.vertexUvOne" - }, - { - "to": "Facade_Texture_build_02_1", - "toAttribute": "vertexUvOneV", - "toAttributeComplete": "Facade_Texture_build_02_1.vertexUvOneV", - "from": "place2dTexture43", - "fromAttribute": "place2dTexture43.vertexUvOne" - }, - { - "to": "Facade_Texture_build_02_1", - "toAttribute": "vertexUvTwo", - "toAttributeComplete": "Facade_Texture_build_02_1.vertexUvTwo", - "from": "place2dTexture43", - "fromAttribute": "place2dTexture43.vertexUvTwo" - }, - { - "to": "Facade_Texture_build_02_1", - "toAttribute": "vertexUvTwoU", - "toAttributeComplete": "Facade_Texture_build_02_1.vertexUvTwoU", - "from": "place2dTexture43", - "fromAttribute": "place2dTexture43.vertexUvTwo" - }, - { - "to": "Facade_Texture_build_02_1", - "toAttribute": "vertexUvTwoV", - "toAttributeComplete": "Facade_Texture_build_02_1.vertexUvTwoV", - "from": "place2dTexture43", - "fromAttribute": "place2dTexture43.vertexUvTwo" - }, - { - "to": "Facade_Texture_build_02_1", - "toAttribute": "vertexUvThree", - "toAttributeComplete": "Facade_Texture_build_02_1.vertexUvThree", - "from": "place2dTexture43", - "fromAttribute": "place2dTexture43.vertexUvThree" - }, - { - "to": "Facade_Texture_build_02_1", - "toAttribute": "vertexUvThreeU", - "toAttributeComplete": "Facade_Texture_build_02_1.vertexUvThreeU", - "from": "place2dTexture43", - "fromAttribute": "place2dTexture43.vertexUvThree" - }, - { - "to": "Facade_Texture_build_02_1", - "toAttribute": "vertexUvThreeV", - "toAttributeComplete": "Facade_Texture_build_02_1.vertexUvThreeV", - "from": "place2dTexture43", - "fromAttribute": "place2dTexture43.vertexUvThree" - }, - { - "to": "remapValue3", - "toAttribute": "inputValue", - "toAttributeComplete": "remapValue3.inputValue", - "from": "noise2", - "fromAttribute": "noise2.outAlpha" - }, - { - "to": "noise2", - "toAttribute": "uvCoord", - "toAttributeComplete": "noise2.uvCoord", - "from": "place2dTexture45", - "fromAttribute": "place2dTexture45.outUV" - }, - { - "to": "noise2", - "toAttribute": "uCoord", - "toAttributeComplete": "noise2.uCoord", - "from": "place2dTexture45", - "fromAttribute": "place2dTexture45.outUV" - }, - { - "to": "noise2", - "toAttribute": "vCoord", - "toAttributeComplete": "noise2.vCoord", - "from": "place2dTexture45", - "fromAttribute": "place2dTexture45.outUV" - }, - { - "to": "noise2", - "toAttribute": "uvFilterSize", - "toAttributeComplete": "noise2.uvFilterSize", - "from": "place2dTexture45", - "fromAttribute": "place2dTexture45.outUvFilterSize" - }, - { - "to": "noise2", - "toAttribute": "uvFilterSizeX", - "toAttributeComplete": "noise2.uvFilterSizeX", - "from": "place2dTexture45", - "fromAttribute": "place2dTexture45.outUvFilterSize" - }, - { - "to": "noise2", - "toAttribute": "uvFilterSizeY", - "toAttributeComplete": "noise2.uvFilterSizeY", - "from": "place2dTexture45", - "fromAttribute": "place2dTexture45.outUvFilterSize" - }, - { - "to": "bump2d1", - "toAttribute": "bumpValue", - "toAttributeComplete": "bump2d1.bumpValue", - "from": "blendColors6", - "fromAttribute": "blendColors6.outputR" - }, - { - "to": "blendColors6", - "toAttribute": "blender", - "toAttributeComplete": "blendColors6.blender", - "from": "remapValue3", - "fromAttribute": "remapValue3.outValue" - }, - { - "to": "blendColors6", - "toAttribute": "color1", - "toAttributeComplete": "blendColors6.color1", - "from": "Brick_Facade_STL_Grey_02_1", - "fromAttribute": "Brick_Facade_STL_Grey_02_1.outColor" - }, - { - "to": "blendColors6", - "toAttribute": "color1R", - "toAttributeComplete": "blendColors6.color1R", - "from": "Brick_Facade_STL_Grey_02_1", - "fromAttribute": "Brick_Facade_STL_Grey_02_1.outColor" - }, - { - "to": "blendColors6", - "toAttribute": "color1G", - "toAttributeComplete": "blendColors6.color1G", - "from": "Brick_Facade_STL_Grey_02_1", - "fromAttribute": "Brick_Facade_STL_Grey_02_1.outColor" - }, - { - "to": "blendColors6", - "toAttribute": "color1B", - "toAttributeComplete": "blendColors6.color1B", - "from": "Brick_Facade_STL_Grey_02_1", - "fromAttribute": "Brick_Facade_STL_Grey_02_1.outColor" - }, - { - "to": "blendColors6", - "toAttribute": "color2", - "toAttributeComplete": "blendColors6.color2", - "from": "Brick_Facade_STL_Grey_1", - "fromAttribute": "Brick_Facade_STL_Grey_1.outColor" - }, - { - "to": "blendColors6", - "toAttribute": "color2R", - "toAttributeComplete": "blendColors6.color2R", - "from": "Brick_Facade_STL_Grey_1", - "fromAttribute": "Brick_Facade_STL_Grey_1.outColor" - }, - { - "to": "blendColors6", - "toAttribute": "color2G", - "toAttributeComplete": "blendColors6.color2G", - "from": "Brick_Facade_STL_Grey_1", - "fromAttribute": "Brick_Facade_STL_Grey_1.outColor" - }, - { - "to": "blendColors6", - "toAttribute": "color2B", - "toAttributeComplete": "blendColors6.color2B", - "from": "Brick_Facade_STL_Grey_1", - "fromAttribute": "Brick_Facade_STL_Grey_1.outColor" - }, - { - "to": "Brick_Facade_STL_Grey_02_1", - "toAttribute": "uvCoord", - "toAttributeComplete": "Brick_Facade_STL_Grey_02_1.uvCoord", - "from": "place2dTexture44", - "fromAttribute": "place2dTexture44.outUV" - }, - { - "to": "Brick_Facade_STL_Grey_02_1", - "toAttribute": "uCoord", - "toAttributeComplete": "Brick_Facade_STL_Grey_02_1.uCoord", - "from": "place2dTexture44", - "fromAttribute": "place2dTexture44.outUV" - }, - { - "to": "Brick_Facade_STL_Grey_02_1", - "toAttribute": "vCoord", - "toAttributeComplete": "Brick_Facade_STL_Grey_02_1.vCoord", - "from": "place2dTexture44", - "fromAttribute": "place2dTexture44.outUV" - }, - { - "to": "Brick_Facade_STL_Grey_02_1", - "toAttribute": "uvFilterSize", - "toAttributeComplete": "Brick_Facade_STL_Grey_02_1.uvFilterSize", - "from": "place2dTexture44", - "fromAttribute": "place2dTexture44.outUvFilterSize" - }, - { - "to": "Brick_Facade_STL_Grey_02_1", - "toAttribute": "uvFilterSizeX", - "toAttributeComplete": "Brick_Facade_STL_Grey_02_1.uvFilterSizeX", - "from": "place2dTexture44", - "fromAttribute": "place2dTexture44.outUvFilterSize" - }, - { - "to": "Brick_Facade_STL_Grey_02_1", - "toAttribute": "uvFilterSizeY", - "toAttributeComplete": "Brick_Facade_STL_Grey_02_1.uvFilterSizeY", - "from": "place2dTexture44", - "fromAttribute": "place2dTexture44.outUvFilterSize" - }, - { - "to": "Brick_Facade_STL_Grey_02_1", - "toAttribute": "coverage", - "toAttributeComplete": "Brick_Facade_STL_Grey_02_1.coverage", - "from": "place2dTexture44", - "fromAttribute": "place2dTexture44.coverage" - }, - { - "to": "Brick_Facade_STL_Grey_02_1", - "toAttribute": "coverageU", - "toAttributeComplete": "Brick_Facade_STL_Grey_02_1.coverageU", - "from": "place2dTexture44", - "fromAttribute": "place2dTexture44.coverage" - }, - { - "to": "Brick_Facade_STL_Grey_02_1", - "toAttribute": "coverageV", - "toAttributeComplete": "Brick_Facade_STL_Grey_02_1.coverageV", - "from": "place2dTexture44", - "fromAttribute": "place2dTexture44.coverage" - }, - { - "to": "Brick_Facade_STL_Grey_02_1", - "toAttribute": "translateFrame", - "toAttributeComplete": "Brick_Facade_STL_Grey_02_1.translateFrame", - "from": "place2dTexture44", - "fromAttribute": "place2dTexture44.translateFrame" - }, - { - "to": "Brick_Facade_STL_Grey_02_1", - "toAttribute": "translateFrameU", - "toAttributeComplete": "Brick_Facade_STL_Grey_02_1.translateFrameU", - "from": "place2dTexture44", - "fromAttribute": "place2dTexture44.translateFrame" - }, - { - "to": "Brick_Facade_STL_Grey_02_1", - "toAttribute": "translateFrameV", - "toAttributeComplete": "Brick_Facade_STL_Grey_02_1.translateFrameV", - "from": "place2dTexture44", - "fromAttribute": "place2dTexture44.translateFrame" - }, - { - "to": "Brick_Facade_STL_Grey_02_1", - "toAttribute": "rotateFrame", - "toAttributeComplete": "Brick_Facade_STL_Grey_02_1.rotateFrame", - "from": "place2dTexture44", - "fromAttribute": "place2dTexture44.rotateFrame" - }, - { - "to": "Brick_Facade_STL_Grey_02_1", - "toAttribute": "mirrorU", - "toAttributeComplete": "Brick_Facade_STL_Grey_02_1.mirrorU", - "from": "place2dTexture44", - "fromAttribute": "place2dTexture44.mirrorU" - }, - { - "to": "Brick_Facade_STL_Grey_02_1", - "toAttribute": "mirrorV", - "toAttributeComplete": "Brick_Facade_STL_Grey_02_1.mirrorV", - "from": "place2dTexture44", - "fromAttribute": "place2dTexture44.mirrorV" - }, - { - "to": "Brick_Facade_STL_Grey_02_1", - "toAttribute": "stagger", - "toAttributeComplete": "Brick_Facade_STL_Grey_02_1.stagger", - "from": "place2dTexture44", - "fromAttribute": "place2dTexture44.stagger" - }, - { - "to": "Brick_Facade_STL_Grey_02_1", - "toAttribute": "wrapU", - "toAttributeComplete": "Brick_Facade_STL_Grey_02_1.wrapU", - "from": "place2dTexture44", - "fromAttribute": "place2dTexture44.wrapU" - }, - { - "to": "Brick_Facade_STL_Grey_02_1", - "toAttribute": "wrapV", - "toAttributeComplete": "Brick_Facade_STL_Grey_02_1.wrapV", - "from": "place2dTexture44", - "fromAttribute": "place2dTexture44.wrapV" - }, - { - "to": "Brick_Facade_STL_Grey_02_1", - "toAttribute": "repeatUV", - "toAttributeComplete": "Brick_Facade_STL_Grey_02_1.repeatUV", - "from": "place2dTexture44", - "fromAttribute": "place2dTexture44.repeatUV" - }, - { - "to": "Brick_Facade_STL_Grey_02_1", - "toAttribute": "repeatU", - "toAttributeComplete": "Brick_Facade_STL_Grey_02_1.repeatU", - "from": "place2dTexture44", - "fromAttribute": "place2dTexture44.repeatUV" - }, - { - "to": "Brick_Facade_STL_Grey_02_1", - "toAttribute": "repeatV", - "toAttributeComplete": "Brick_Facade_STL_Grey_02_1.repeatV", - "from": "place2dTexture44", - "fromAttribute": "place2dTexture44.repeatUV" - }, - { - "to": "Brick_Facade_STL_Grey_02_1", - "toAttribute": "offset", - "toAttributeComplete": "Brick_Facade_STL_Grey_02_1.offset", - "from": "place2dTexture44", - "fromAttribute": "place2dTexture44.offset" - }, - { - "to": "Brick_Facade_STL_Grey_02_1", - "toAttribute": "offsetU", - "toAttributeComplete": "Brick_Facade_STL_Grey_02_1.offsetU", - "from": "place2dTexture44", - "fromAttribute": "place2dTexture44.offset" - }, - { - "to": "Brick_Facade_STL_Grey_02_1", - "toAttribute": "offsetV", - "toAttributeComplete": "Brick_Facade_STL_Grey_02_1.offsetV", - "from": "place2dTexture44", - "fromAttribute": "place2dTexture44.offset" - }, - { - "to": "Brick_Facade_STL_Grey_02_1", - "toAttribute": "rotateUV", - "toAttributeComplete": "Brick_Facade_STL_Grey_02_1.rotateUV", - "from": "place2dTexture44", - "fromAttribute": "place2dTexture44.rotateUV" - }, - { - "to": "Brick_Facade_STL_Grey_02_1", - "toAttribute": "noiseUV", - "toAttributeComplete": "Brick_Facade_STL_Grey_02_1.noiseUV", - "from": "place2dTexture44", - "fromAttribute": "place2dTexture44.noiseUV" - }, - { - "to": "Brick_Facade_STL_Grey_02_1", - "toAttribute": "noiseU", - "toAttributeComplete": "Brick_Facade_STL_Grey_02_1.noiseU", - "from": "place2dTexture44", - "fromAttribute": "place2dTexture44.noiseUV" - }, - { - "to": "Brick_Facade_STL_Grey_02_1", - "toAttribute": "noiseV", - "toAttributeComplete": "Brick_Facade_STL_Grey_02_1.noiseV", - "from": "place2dTexture44", - "fromAttribute": "place2dTexture44.noiseUV" - }, - { - "to": "Brick_Facade_STL_Grey_02_1", - "toAttribute": "vertexCameraOne", - "toAttributeComplete": "Brick_Facade_STL_Grey_02_1.vertexCameraOne", - "from": "place2dTexture44", - "fromAttribute": "place2dTexture44.vertexCameraOne" - }, - { - "to": "Brick_Facade_STL_Grey_02_1", - "toAttribute": "vertexCameraOneX", - "toAttributeComplete": "Brick_Facade_STL_Grey_02_1.vertexCameraOneX", - "from": "place2dTexture44", - "fromAttribute": "place2dTexture44.vertexCameraOne" - }, - { - "to": "Brick_Facade_STL_Grey_02_1", - "toAttribute": "vertexCameraOneY", - "toAttributeComplete": "Brick_Facade_STL_Grey_02_1.vertexCameraOneY", - "from": "place2dTexture44", - "fromAttribute": "place2dTexture44.vertexCameraOne" - }, - { - "to": "Brick_Facade_STL_Grey_02_1", - "toAttribute": "vertexCameraOneZ", - "toAttributeComplete": "Brick_Facade_STL_Grey_02_1.vertexCameraOneZ", - "from": "place2dTexture44", - "fromAttribute": "place2dTexture44.vertexCameraOne" - }, - { - "to": "Brick_Facade_STL_Grey_02_1", - "toAttribute": "vertexUvOne", - "toAttributeComplete": "Brick_Facade_STL_Grey_02_1.vertexUvOne", - "from": "place2dTexture44", - "fromAttribute": "place2dTexture44.vertexUvOne" - }, - { - "to": "Brick_Facade_STL_Grey_02_1", - "toAttribute": "vertexUvOneU", - "toAttributeComplete": "Brick_Facade_STL_Grey_02_1.vertexUvOneU", - "from": "place2dTexture44", - "fromAttribute": "place2dTexture44.vertexUvOne" - }, - { - "to": "Brick_Facade_STL_Grey_02_1", - "toAttribute": "vertexUvOneV", - "toAttributeComplete": "Brick_Facade_STL_Grey_02_1.vertexUvOneV", - "from": "place2dTexture44", - "fromAttribute": "place2dTexture44.vertexUvOne" - }, - { - "to": "Brick_Facade_STL_Grey_02_1", - "toAttribute": "vertexUvTwo", - "toAttributeComplete": "Brick_Facade_STL_Grey_02_1.vertexUvTwo", - "from": "place2dTexture44", - "fromAttribute": "place2dTexture44.vertexUvTwo" - }, - { - "to": "Brick_Facade_STL_Grey_02_1", - "toAttribute": "vertexUvTwoU", - "toAttributeComplete": "Brick_Facade_STL_Grey_02_1.vertexUvTwoU", - "from": "place2dTexture44", - "fromAttribute": "place2dTexture44.vertexUvTwo" - }, - { - "to": "Brick_Facade_STL_Grey_02_1", - "toAttribute": "vertexUvTwoV", - "toAttributeComplete": "Brick_Facade_STL_Grey_02_1.vertexUvTwoV", - "from": "place2dTexture44", - "fromAttribute": "place2dTexture44.vertexUvTwo" - }, - { - "to": "Brick_Facade_STL_Grey_02_1", - "toAttribute": "vertexUvThree", - "toAttributeComplete": "Brick_Facade_STL_Grey_02_1.vertexUvThree", - "from": "place2dTexture44", - "fromAttribute": "place2dTexture44.vertexUvThree" - }, - { - "to": "Brick_Facade_STL_Grey_02_1", - "toAttribute": "vertexUvThreeU", - "toAttributeComplete": "Brick_Facade_STL_Grey_02_1.vertexUvThreeU", - "from": "place2dTexture44", - "fromAttribute": "place2dTexture44.vertexUvThree" - }, - { - "to": "Brick_Facade_STL_Grey_02_1", - "toAttribute": "vertexUvThreeV", - "toAttributeComplete": "Brick_Facade_STL_Grey_02_1.vertexUvThreeV", - "from": "place2dTexture44", - "fromAttribute": "place2dTexture44.vertexUvThree" - }, - { - "to": "Brick_Facade_STL_Grey_1", - "toAttribute": "uvCoord", - "toAttributeComplete": "Brick_Facade_STL_Grey_1.uvCoord", - "from": "place2dTexture36", - "fromAttribute": "place2dTexture36.outUV" - }, - { - "to": "Brick_Facade_STL_Grey_1", - "toAttribute": "uCoord", - "toAttributeComplete": "Brick_Facade_STL_Grey_1.uCoord", - "from": "place2dTexture36", - "fromAttribute": "place2dTexture36.outUV" - }, - { - "to": "Brick_Facade_STL_Grey_1", - "toAttribute": "vCoord", - "toAttributeComplete": "Brick_Facade_STL_Grey_1.vCoord", - "from": "place2dTexture36", - "fromAttribute": "place2dTexture36.outUV" - }, - { - "to": "Brick_Facade_STL_Grey_1", - "toAttribute": "uvFilterSize", - "toAttributeComplete": "Brick_Facade_STL_Grey_1.uvFilterSize", - "from": "place2dTexture36", - "fromAttribute": "place2dTexture36.outUvFilterSize" - }, - { - "to": "Brick_Facade_STL_Grey_1", - "toAttribute": "uvFilterSizeX", - "toAttributeComplete": "Brick_Facade_STL_Grey_1.uvFilterSizeX", - "from": "place2dTexture36", - "fromAttribute": "place2dTexture36.outUvFilterSize" - }, - { - "to": "Brick_Facade_STL_Grey_1", - "toAttribute": "uvFilterSizeY", - "toAttributeComplete": "Brick_Facade_STL_Grey_1.uvFilterSizeY", - "from": "place2dTexture36", - "fromAttribute": "place2dTexture36.outUvFilterSize" - }, - { - "to": "Brick_Facade_STL_Grey_1", - "toAttribute": "coverage", - "toAttributeComplete": "Brick_Facade_STL_Grey_1.coverage", - "from": "place2dTexture36", - "fromAttribute": "place2dTexture36.coverage" - }, - { - "to": "Brick_Facade_STL_Grey_1", - "toAttribute": "coverageU", - "toAttributeComplete": "Brick_Facade_STL_Grey_1.coverageU", - "from": "place2dTexture36", - "fromAttribute": "place2dTexture36.coverage" - }, - { - "to": "Brick_Facade_STL_Grey_1", - "toAttribute": "coverageV", - "toAttributeComplete": "Brick_Facade_STL_Grey_1.coverageV", - "from": "place2dTexture36", - "fromAttribute": "place2dTexture36.coverage" - }, - { - "to": "Brick_Facade_STL_Grey_1", - "toAttribute": "translateFrame", - "toAttributeComplete": "Brick_Facade_STL_Grey_1.translateFrame", - "from": "place2dTexture36", - "fromAttribute": "place2dTexture36.translateFrame" - }, - { - "to": "Brick_Facade_STL_Grey_1", - "toAttribute": "translateFrameU", - "toAttributeComplete": "Brick_Facade_STL_Grey_1.translateFrameU", - "from": "place2dTexture36", - "fromAttribute": "place2dTexture36.translateFrame" - }, - { - "to": "Brick_Facade_STL_Grey_1", - "toAttribute": "translateFrameV", - "toAttributeComplete": "Brick_Facade_STL_Grey_1.translateFrameV", - "from": "place2dTexture36", - "fromAttribute": "place2dTexture36.translateFrame" - }, - { - "to": "Brick_Facade_STL_Grey_1", - "toAttribute": "rotateFrame", - "toAttributeComplete": "Brick_Facade_STL_Grey_1.rotateFrame", - "from": "place2dTexture36", - "fromAttribute": "place2dTexture36.rotateFrame" - }, - { - "to": "Brick_Facade_STL_Grey_1", - "toAttribute": "mirrorU", - "toAttributeComplete": "Brick_Facade_STL_Grey_1.mirrorU", - "from": "place2dTexture36", - "fromAttribute": "place2dTexture36.mirrorU" - }, - { - "to": "Brick_Facade_STL_Grey_1", - "toAttribute": "mirrorV", - "toAttributeComplete": "Brick_Facade_STL_Grey_1.mirrorV", - "from": "place2dTexture36", - "fromAttribute": "place2dTexture36.mirrorV" - }, - { - "to": "Brick_Facade_STL_Grey_1", - "toAttribute": "stagger", - "toAttributeComplete": "Brick_Facade_STL_Grey_1.stagger", - "from": "place2dTexture36", - "fromAttribute": "place2dTexture36.stagger" - }, - { - "to": "Brick_Facade_STL_Grey_1", - "toAttribute": "wrapU", - "toAttributeComplete": "Brick_Facade_STL_Grey_1.wrapU", - "from": "place2dTexture36", - "fromAttribute": "place2dTexture36.wrapU" - }, - { - "to": "Brick_Facade_STL_Grey_1", - "toAttribute": "wrapV", - "toAttributeComplete": "Brick_Facade_STL_Grey_1.wrapV", - "from": "place2dTexture36", - "fromAttribute": "place2dTexture36.wrapV" - }, - { - "to": "Brick_Facade_STL_Grey_1", - "toAttribute": "repeatUV", - "toAttributeComplete": "Brick_Facade_STL_Grey_1.repeatUV", - "from": "place2dTexture36", - "fromAttribute": "place2dTexture36.repeatUV" - }, - { - "to": "Brick_Facade_STL_Grey_1", - "toAttribute": "repeatU", - "toAttributeComplete": "Brick_Facade_STL_Grey_1.repeatU", - "from": "place2dTexture36", - "fromAttribute": "place2dTexture36.repeatUV" - }, - { - "to": "Brick_Facade_STL_Grey_1", - "toAttribute": "repeatV", - "toAttributeComplete": "Brick_Facade_STL_Grey_1.repeatV", - "from": "place2dTexture36", - "fromAttribute": "place2dTexture36.repeatUV" - }, - { - "to": "Brick_Facade_STL_Grey_1", - "toAttribute": "offset", - "toAttributeComplete": "Brick_Facade_STL_Grey_1.offset", - "from": "place2dTexture36", - "fromAttribute": "place2dTexture36.offset" - }, - { - "to": "Brick_Facade_STL_Grey_1", - "toAttribute": "offsetU", - "toAttributeComplete": "Brick_Facade_STL_Grey_1.offsetU", - "from": "place2dTexture36", - "fromAttribute": "place2dTexture36.offset" - }, - { - "to": "Brick_Facade_STL_Grey_1", - "toAttribute": "offsetV", - "toAttributeComplete": "Brick_Facade_STL_Grey_1.offsetV", - "from": "place2dTexture36", - "fromAttribute": "place2dTexture36.offset" - }, - { - "to": "Brick_Facade_STL_Grey_1", - "toAttribute": "rotateUV", - "toAttributeComplete": "Brick_Facade_STL_Grey_1.rotateUV", - "from": "place2dTexture36", - "fromAttribute": "place2dTexture36.rotateUV" - }, - { - "to": "Brick_Facade_STL_Grey_1", - "toAttribute": "noiseUV", - "toAttributeComplete": "Brick_Facade_STL_Grey_1.noiseUV", - "from": "place2dTexture36", - "fromAttribute": "place2dTexture36.noiseUV" - }, - { - "to": "Brick_Facade_STL_Grey_1", - "toAttribute": "noiseU", - "toAttributeComplete": "Brick_Facade_STL_Grey_1.noiseU", - "from": "place2dTexture36", - "fromAttribute": "place2dTexture36.noiseUV" - }, - { - "to": "Brick_Facade_STL_Grey_1", - "toAttribute": "noiseV", - "toAttributeComplete": "Brick_Facade_STL_Grey_1.noiseV", - "from": "place2dTexture36", - "fromAttribute": "place2dTexture36.noiseUV" - }, - { - "to": "Brick_Facade_STL_Grey_1", - "toAttribute": "vertexCameraOne", - "toAttributeComplete": "Brick_Facade_STL_Grey_1.vertexCameraOne", - "from": "place2dTexture36", - "fromAttribute": "place2dTexture36.vertexCameraOne" - }, - { - "to": "Brick_Facade_STL_Grey_1", - "toAttribute": "vertexCameraOneX", - "toAttributeComplete": "Brick_Facade_STL_Grey_1.vertexCameraOneX", - "from": "place2dTexture36", - "fromAttribute": "place2dTexture36.vertexCameraOne" - }, - { - "to": "Brick_Facade_STL_Grey_1", - "toAttribute": "vertexCameraOneY", - "toAttributeComplete": "Brick_Facade_STL_Grey_1.vertexCameraOneY", - "from": "place2dTexture36", - "fromAttribute": "place2dTexture36.vertexCameraOne" - }, - { - "to": "Brick_Facade_STL_Grey_1", - "toAttribute": "vertexCameraOneZ", - "toAttributeComplete": "Brick_Facade_STL_Grey_1.vertexCameraOneZ", - "from": "place2dTexture36", - "fromAttribute": "place2dTexture36.vertexCameraOne" - }, - { - "to": "Brick_Facade_STL_Grey_1", - "toAttribute": "vertexUvOne", - "toAttributeComplete": "Brick_Facade_STL_Grey_1.vertexUvOne", - "from": "place2dTexture36", - "fromAttribute": "place2dTexture36.vertexUvOne" - }, - { - "to": "Brick_Facade_STL_Grey_1", - "toAttribute": "vertexUvOneU", - "toAttributeComplete": "Brick_Facade_STL_Grey_1.vertexUvOneU", - "from": "place2dTexture36", - "fromAttribute": "place2dTexture36.vertexUvOne" - }, - { - "to": "Brick_Facade_STL_Grey_1", - "toAttribute": "vertexUvOneV", - "toAttributeComplete": "Brick_Facade_STL_Grey_1.vertexUvOneV", - "from": "place2dTexture36", - "fromAttribute": "place2dTexture36.vertexUvOne" - }, - { - "to": "Brick_Facade_STL_Grey_1", - "toAttribute": "vertexUvTwo", - "toAttributeComplete": "Brick_Facade_STL_Grey_1.vertexUvTwo", - "from": "place2dTexture36", - "fromAttribute": "place2dTexture36.vertexUvTwo" - }, - { - "to": "Brick_Facade_STL_Grey_1", - "toAttribute": "vertexUvTwoU", - "toAttributeComplete": "Brick_Facade_STL_Grey_1.vertexUvTwoU", - "from": "place2dTexture36", - "fromAttribute": "place2dTexture36.vertexUvTwo" - }, - { - "to": "Brick_Facade_STL_Grey_1", - "toAttribute": "vertexUvTwoV", - "toAttributeComplete": "Brick_Facade_STL_Grey_1.vertexUvTwoV", - "from": "place2dTexture36", - "fromAttribute": "place2dTexture36.vertexUvTwo" - }, - { - "to": "Brick_Facade_STL_Grey_1", - "toAttribute": "vertexUvThree", - "toAttributeComplete": "Brick_Facade_STL_Grey_1.vertexUvThree", - "from": "place2dTexture36", - "fromAttribute": "place2dTexture36.vertexUvThree" - }, - { - "to": "Brick_Facade_STL_Grey_1", - "toAttribute": "vertexUvThreeU", - "toAttributeComplete": "Brick_Facade_STL_Grey_1.vertexUvThreeU", - "from": "place2dTexture36", - "fromAttribute": "place2dTexture36.vertexUvThree" - }, - { - "to": "Brick_Facade_STL_Grey_1", - "toAttribute": "vertexUvThreeV", - "toAttributeComplete": "Brick_Facade_STL_Grey_1.vertexUvThreeV", - "from": "place2dTexture36", - "fromAttribute": "place2dTexture36.vertexUvThree" - }, - { - "to": "remapValue4", - "toAttribute": "inputValue", - "toAttributeComplete": "remapValue4.inputValue", - "from": "blendColors6", - "fromAttribute": "blendColors6.outputR" - }, - { - "to": "SH_Brick_Dest", - "toAttribute": "normalCamera", - "toAttributeComplete": "SH_Brick_Dest.normalCamera", - "from": "bump2d3", - "fromAttribute": "bump2d3.outNormal" - }, - { - "to": "SH_Brick_Dest", - "toAttribute": "normalCameraX", - "toAttributeComplete": "SH_Brick_Dest.normalCameraX", - "from": "bump2d3", - "fromAttribute": "bump2d3.outNormal" - }, - { - "to": "SH_Brick_Dest", - "toAttribute": "normalCameraY", - "toAttributeComplete": "SH_Brick_Dest.normalCameraY", - "from": "bump2d3", - "fromAttribute": "bump2d3.outNormal" - }, - { - "to": "SH_Brick_Dest", - "toAttribute": "normalCameraZ", - "toAttributeComplete": "SH_Brick_Dest.normalCameraZ", - "from": "bump2d3", - "fromAttribute": "bump2d3.outNormal" - }, - { - "to": "SH_Brick_Dest", - "toAttribute": "baseColor", - "toAttributeComplete": "SH_Brick_Dest.baseColor", - "from": "remapHsv1", - "fromAttribute": "remapHsv1.outColor" - }, - { - "to": "SH_Brick_Dest", - "toAttribute": "baseColorR", - "toAttributeComplete": "SH_Brick_Dest.baseColorR", - "from": "remapHsv1", - "fromAttribute": "remapHsv1.outColor" - }, - { - "to": "SH_Brick_Dest", - "toAttribute": "baseColorG", - "toAttributeComplete": "SH_Brick_Dest.baseColorG", - "from": "remapHsv1", - "fromAttribute": "remapHsv1.outColor" - }, - { - "to": "SH_Brick_Dest", - "toAttribute": "baseColorB", - "toAttributeComplete": "SH_Brick_Dest.baseColorB", - "from": "remapHsv1", - "fromAttribute": "remapHsv1.outColor" - }, - { - "to": "SH_Brick_Dest", - "toAttribute": "specularRoughness", - "toAttributeComplete": "SH_Brick_Dest.specularRoughness", - "from": "remapValue1", - "fromAttribute": "remapValue1.outValue" - }, - { - "to": "remapHsv1", - "toAttribute": "color", - "toAttributeComplete": "remapHsv1.color", - "from": "blendColors7", - "fromAttribute": "blendColors7.output" - }, - { - "to": "remapHsv1", - "toAttribute": "colorR", - "toAttributeComplete": "remapHsv1.colorR", - "from": "blendColors7", - "fromAttribute": "blendColors7.output" - }, - { - "to": "remapHsv1", - "toAttribute": "colorG", - "toAttributeComplete": "remapHsv1.colorG", - "from": "blendColors7", - "fromAttribute": "blendColors7.output" - }, - { - "to": "remapHsv1", - "toAttribute": "colorB", - "toAttributeComplete": "remapHsv1.colorB", - "from": "blendColors7", - "fromAttribute": "blendColors7.output" - }, - { - "to": "blendColors7", - "toAttribute": "blender", - "toAttributeComplete": "blendColors7.blender", - "from": "aiNoise1", - "fromAttribute": "aiNoise1.outColorR" - }, - { - "to": "blendColors7", - "toAttribute": "color1", - "toAttributeComplete": "blendColors7.color1", - "from": "Facade_Texture_build_Clear_1", - "fromAttribute": "Facade_Texture_build_Clear_1.outColor" - }, - { - "to": "blendColors7", - "toAttribute": "color1R", - "toAttributeComplete": "blendColors7.color1R", - "from": "Facade_Texture_build_Clear_1", - "fromAttribute": "Facade_Texture_build_Clear_1.outColor" - }, - { - "to": "blendColors7", - "toAttribute": "color1G", - "toAttributeComplete": "blendColors7.color1G", - "from": "Facade_Texture_build_Clear_1", - "fromAttribute": "Facade_Texture_build_Clear_1.outColor" - }, - { - "to": "blendColors7", - "toAttribute": "color1B", - "toAttributeComplete": "blendColors7.color1B", - "from": "Facade_Texture_build_Clear_1", - "fromAttribute": "Facade_Texture_build_Clear_1.outColor" - }, - { - "to": "blendColors7", - "toAttribute": "color2", - "toAttributeComplete": "blendColors7.color2", - "from": "Facade_Texture_build_Clear_02_1", - "fromAttribute": "Facade_Texture_build_Clear_02_1.outColor" - }, - { - "to": "blendColors7", - "toAttribute": "color2R", - "toAttributeComplete": "blendColors7.color2R", - "from": "Facade_Texture_build_Clear_02_1", - "fromAttribute": "Facade_Texture_build_Clear_02_1.outColor" - }, - { - "to": "blendColors7", - "toAttribute": "color2G", - "toAttributeComplete": "blendColors7.color2G", - "from": "Facade_Texture_build_Clear_02_1", - "fromAttribute": "Facade_Texture_build_Clear_02_1.outColor" - }, - { - "to": "blendColors7", - "toAttribute": "color2B", - "toAttributeComplete": "blendColors7.color2B", - "from": "Facade_Texture_build_Clear_02_1", - "fromAttribute": "Facade_Texture_build_Clear_02_1.outColor" - }, - { - "to": "Facade_Texture_build_Clear_1", - "toAttribute": "uvCoord", - "toAttributeComplete": "Facade_Texture_build_Clear_1.uvCoord", - "from": "place2dTexture38", - "fromAttribute": "place2dTexture38.outUV" - }, - { - "to": "Facade_Texture_build_Clear_1", - "toAttribute": "uCoord", - "toAttributeComplete": "Facade_Texture_build_Clear_1.uCoord", - "from": "place2dTexture38", - "fromAttribute": "place2dTexture38.outUV" - }, - { - "to": "Facade_Texture_build_Clear_1", - "toAttribute": "vCoord", - "toAttributeComplete": "Facade_Texture_build_Clear_1.vCoord", - "from": "place2dTexture38", - "fromAttribute": "place2dTexture38.outUV" - }, - { - "to": "Facade_Texture_build_Clear_1", - "toAttribute": "uvFilterSize", - "toAttributeComplete": "Facade_Texture_build_Clear_1.uvFilterSize", - "from": "place2dTexture38", - "fromAttribute": "place2dTexture38.outUvFilterSize" - }, - { - "to": "Facade_Texture_build_Clear_1", - "toAttribute": "uvFilterSizeX", - "toAttributeComplete": "Facade_Texture_build_Clear_1.uvFilterSizeX", - "from": "place2dTexture38", - "fromAttribute": "place2dTexture38.outUvFilterSize" - }, - { - "to": "Facade_Texture_build_Clear_1", - "toAttribute": "uvFilterSizeY", - "toAttributeComplete": "Facade_Texture_build_Clear_1.uvFilterSizeY", - "from": "place2dTexture38", - "fromAttribute": "place2dTexture38.outUvFilterSize" - }, - { - "to": "Facade_Texture_build_Clear_1", - "toAttribute": "coverage", - "toAttributeComplete": "Facade_Texture_build_Clear_1.coverage", - "from": "place2dTexture38", - "fromAttribute": "place2dTexture38.coverage" - }, - { - "to": "Facade_Texture_build_Clear_1", - "toAttribute": "coverageU", - "toAttributeComplete": "Facade_Texture_build_Clear_1.coverageU", - "from": "place2dTexture38", - "fromAttribute": "place2dTexture38.coverage" - }, - { - "to": "Facade_Texture_build_Clear_1", - "toAttribute": "coverageV", - "toAttributeComplete": "Facade_Texture_build_Clear_1.coverageV", - "from": "place2dTexture38", - "fromAttribute": "place2dTexture38.coverage" - }, - { - "to": "Facade_Texture_build_Clear_1", - "toAttribute": "translateFrame", - "toAttributeComplete": "Facade_Texture_build_Clear_1.translateFrame", - "from": "place2dTexture38", - "fromAttribute": "place2dTexture38.translateFrame" - }, - { - "to": "Facade_Texture_build_Clear_1", - "toAttribute": "translateFrameU", - "toAttributeComplete": "Facade_Texture_build_Clear_1.translateFrameU", - "from": "place2dTexture38", - "fromAttribute": "place2dTexture38.translateFrame" - }, - { - "to": "Facade_Texture_build_Clear_1", - "toAttribute": "translateFrameV", - "toAttributeComplete": "Facade_Texture_build_Clear_1.translateFrameV", - "from": "place2dTexture38", - "fromAttribute": "place2dTexture38.translateFrame" - }, - { - "to": "Facade_Texture_build_Clear_1", - "toAttribute": "rotateFrame", - "toAttributeComplete": "Facade_Texture_build_Clear_1.rotateFrame", - "from": "place2dTexture38", - "fromAttribute": "place2dTexture38.rotateFrame" - }, - { - "to": "Facade_Texture_build_Clear_1", - "toAttribute": "mirrorU", - "toAttributeComplete": "Facade_Texture_build_Clear_1.mirrorU", - "from": "place2dTexture38", - "fromAttribute": "place2dTexture38.mirrorU" - }, - { - "to": "Facade_Texture_build_Clear_1", - "toAttribute": "mirrorV", - "toAttributeComplete": "Facade_Texture_build_Clear_1.mirrorV", - "from": "place2dTexture38", - "fromAttribute": "place2dTexture38.mirrorV" - }, - { - "to": "Facade_Texture_build_Clear_1", - "toAttribute": "stagger", - "toAttributeComplete": "Facade_Texture_build_Clear_1.stagger", - "from": "place2dTexture38", - "fromAttribute": "place2dTexture38.stagger" - }, - { - "to": "Facade_Texture_build_Clear_1", - "toAttribute": "wrapU", - "toAttributeComplete": "Facade_Texture_build_Clear_1.wrapU", - "from": "place2dTexture38", - "fromAttribute": "place2dTexture38.wrapU" - }, - { - "to": "Facade_Texture_build_Clear_1", - "toAttribute": "wrapV", - "toAttributeComplete": "Facade_Texture_build_Clear_1.wrapV", - "from": "place2dTexture38", - "fromAttribute": "place2dTexture38.wrapV" - }, - { - "to": "Facade_Texture_build_Clear_1", - "toAttribute": "repeatUV", - "toAttributeComplete": "Facade_Texture_build_Clear_1.repeatUV", - "from": "place2dTexture38", - "fromAttribute": "place2dTexture38.repeatUV" - }, - { - "to": "Facade_Texture_build_Clear_1", - "toAttribute": "repeatU", - "toAttributeComplete": "Facade_Texture_build_Clear_1.repeatU", - "from": "place2dTexture38", - "fromAttribute": "place2dTexture38.repeatUV" - }, - { - "to": "Facade_Texture_build_Clear_1", - "toAttribute": "repeatV", - "toAttributeComplete": "Facade_Texture_build_Clear_1.repeatV", - "from": "place2dTexture38", - "fromAttribute": "place2dTexture38.repeatUV" - }, - { - "to": "Facade_Texture_build_Clear_1", - "toAttribute": "offset", - "toAttributeComplete": "Facade_Texture_build_Clear_1.offset", - "from": "place2dTexture38", - "fromAttribute": "place2dTexture38.offset" - }, - { - "to": "Facade_Texture_build_Clear_1", - "toAttribute": "offsetU", - "toAttributeComplete": "Facade_Texture_build_Clear_1.offsetU", - "from": "place2dTexture38", - "fromAttribute": "place2dTexture38.offset" - }, - { - "to": "Facade_Texture_build_Clear_1", - "toAttribute": "offsetV", - "toAttributeComplete": "Facade_Texture_build_Clear_1.offsetV", - "from": "place2dTexture38", - "fromAttribute": "place2dTexture38.offset" - }, - { - "to": "Facade_Texture_build_Clear_1", - "toAttribute": "rotateUV", - "toAttributeComplete": "Facade_Texture_build_Clear_1.rotateUV", - "from": "place2dTexture38", - "fromAttribute": "place2dTexture38.rotateUV" - }, - { - "to": "Facade_Texture_build_Clear_1", - "toAttribute": "noiseUV", - "toAttributeComplete": "Facade_Texture_build_Clear_1.noiseUV", - "from": "place2dTexture38", - "fromAttribute": "place2dTexture38.noiseUV" - }, - { - "to": "Facade_Texture_build_Clear_1", - "toAttribute": "noiseU", - "toAttributeComplete": "Facade_Texture_build_Clear_1.noiseU", - "from": "place2dTexture38", - "fromAttribute": "place2dTexture38.noiseUV" - }, - { - "to": "Facade_Texture_build_Clear_1", - "toAttribute": "noiseV", - "toAttributeComplete": "Facade_Texture_build_Clear_1.noiseV", - "from": "place2dTexture38", - "fromAttribute": "place2dTexture38.noiseUV" - }, - { - "to": "Facade_Texture_build_Clear_1", - "toAttribute": "vertexCameraOne", - "toAttributeComplete": "Facade_Texture_build_Clear_1.vertexCameraOne", - "from": "place2dTexture38", - "fromAttribute": "place2dTexture38.vertexCameraOne" - }, - { - "to": "Facade_Texture_build_Clear_1", - "toAttribute": "vertexCameraOneX", - "toAttributeComplete": "Facade_Texture_build_Clear_1.vertexCameraOneX", - "from": "place2dTexture38", - "fromAttribute": "place2dTexture38.vertexCameraOne" - }, - { - "to": "Facade_Texture_build_Clear_1", - "toAttribute": "vertexCameraOneY", - "toAttributeComplete": "Facade_Texture_build_Clear_1.vertexCameraOneY", - "from": "place2dTexture38", - "fromAttribute": "place2dTexture38.vertexCameraOne" - }, - { - "to": "Facade_Texture_build_Clear_1", - "toAttribute": "vertexCameraOneZ", - "toAttributeComplete": "Facade_Texture_build_Clear_1.vertexCameraOneZ", - "from": "place2dTexture38", - "fromAttribute": "place2dTexture38.vertexCameraOne" - }, - { - "to": "Facade_Texture_build_Clear_1", - "toAttribute": "vertexUvOne", - "toAttributeComplete": "Facade_Texture_build_Clear_1.vertexUvOne", - "from": "place2dTexture38", - "fromAttribute": "place2dTexture38.vertexUvOne" - }, - { - "to": "Facade_Texture_build_Clear_1", - "toAttribute": "vertexUvOneU", - "toAttributeComplete": "Facade_Texture_build_Clear_1.vertexUvOneU", - "from": "place2dTexture38", - "fromAttribute": "place2dTexture38.vertexUvOne" - }, - { - "to": "Facade_Texture_build_Clear_1", - "toAttribute": "vertexUvOneV", - "toAttributeComplete": "Facade_Texture_build_Clear_1.vertexUvOneV", - "from": "place2dTexture38", - "fromAttribute": "place2dTexture38.vertexUvOne" - }, - { - "to": "Facade_Texture_build_Clear_1", - "toAttribute": "vertexUvTwo", - "toAttributeComplete": "Facade_Texture_build_Clear_1.vertexUvTwo", - "from": "place2dTexture38", - "fromAttribute": "place2dTexture38.vertexUvTwo" - }, - { - "to": "Facade_Texture_build_Clear_1", - "toAttribute": "vertexUvTwoU", - "toAttributeComplete": "Facade_Texture_build_Clear_1.vertexUvTwoU", - "from": "place2dTexture38", - "fromAttribute": "place2dTexture38.vertexUvTwo" - }, - { - "to": "Facade_Texture_build_Clear_1", - "toAttribute": "vertexUvTwoV", - "toAttributeComplete": "Facade_Texture_build_Clear_1.vertexUvTwoV", - "from": "place2dTexture38", - "fromAttribute": "place2dTexture38.vertexUvTwo" - }, - { - "to": "Facade_Texture_build_Clear_1", - "toAttribute": "vertexUvThree", - "toAttributeComplete": "Facade_Texture_build_Clear_1.vertexUvThree", - "from": "place2dTexture38", - "fromAttribute": "place2dTexture38.vertexUvThree" - }, - { - "to": "Facade_Texture_build_Clear_1", - "toAttribute": "vertexUvThreeU", - "toAttributeComplete": "Facade_Texture_build_Clear_1.vertexUvThreeU", - "from": "place2dTexture38", - "fromAttribute": "place2dTexture38.vertexUvThree" - }, - { - "to": "Facade_Texture_build_Clear_1", - "toAttribute": "vertexUvThreeV", - "toAttributeComplete": "Facade_Texture_build_Clear_1.vertexUvThreeV", - "from": "place2dTexture38", - "fromAttribute": "place2dTexture38.vertexUvThree" - }, - { - "to": "Facade_Texture_build_Clear_02_1", - "toAttribute": "uvCoord", - "toAttributeComplete": "Facade_Texture_build_Clear_02_1.uvCoord", - "from": "place2dTexture42", - "fromAttribute": "place2dTexture42.outUV" - }, - { - "to": "Facade_Texture_build_Clear_02_1", - "toAttribute": "uCoord", - "toAttributeComplete": "Facade_Texture_build_Clear_02_1.uCoord", - "from": "place2dTexture42", - "fromAttribute": "place2dTexture42.outUV" - }, - { - "to": "Facade_Texture_build_Clear_02_1", - "toAttribute": "vCoord", - "toAttributeComplete": "Facade_Texture_build_Clear_02_1.vCoord", - "from": "place2dTexture42", - "fromAttribute": "place2dTexture42.outUV" - }, - { - "to": "Facade_Texture_build_Clear_02_1", - "toAttribute": "uvFilterSize", - "toAttributeComplete": "Facade_Texture_build_Clear_02_1.uvFilterSize", - "from": "place2dTexture42", - "fromAttribute": "place2dTexture42.outUvFilterSize" - }, - { - "to": "Facade_Texture_build_Clear_02_1", - "toAttribute": "uvFilterSizeX", - "toAttributeComplete": "Facade_Texture_build_Clear_02_1.uvFilterSizeX", - "from": "place2dTexture42", - "fromAttribute": "place2dTexture42.outUvFilterSize" - }, - { - "to": "Facade_Texture_build_Clear_02_1", - "toAttribute": "uvFilterSizeY", - "toAttributeComplete": "Facade_Texture_build_Clear_02_1.uvFilterSizeY", - "from": "place2dTexture42", - "fromAttribute": "place2dTexture42.outUvFilterSize" - }, - { - "to": "Facade_Texture_build_Clear_02_1", - "toAttribute": "coverage", - "toAttributeComplete": "Facade_Texture_build_Clear_02_1.coverage", - "from": "place2dTexture42", - "fromAttribute": "place2dTexture42.coverage" - }, - { - "to": "Facade_Texture_build_Clear_02_1", - "toAttribute": "coverageU", - "toAttributeComplete": "Facade_Texture_build_Clear_02_1.coverageU", - "from": "place2dTexture42", - "fromAttribute": "place2dTexture42.coverage" - }, - { - "to": "Facade_Texture_build_Clear_02_1", - "toAttribute": "coverageV", - "toAttributeComplete": "Facade_Texture_build_Clear_02_1.coverageV", - "from": "place2dTexture42", - "fromAttribute": "place2dTexture42.coverage" - }, - { - "to": "Facade_Texture_build_Clear_02_1", - "toAttribute": "translateFrame", - "toAttributeComplete": "Facade_Texture_build_Clear_02_1.translateFrame", - "from": "place2dTexture42", - "fromAttribute": "place2dTexture42.translateFrame" - }, - { - "to": "Facade_Texture_build_Clear_02_1", - "toAttribute": "translateFrameU", - "toAttributeComplete": "Facade_Texture_build_Clear_02_1.translateFrameU", - "from": "place2dTexture42", - "fromAttribute": "place2dTexture42.translateFrame" - }, - { - "to": "Facade_Texture_build_Clear_02_1", - "toAttribute": "translateFrameV", - "toAttributeComplete": "Facade_Texture_build_Clear_02_1.translateFrameV", - "from": "place2dTexture42", - "fromAttribute": "place2dTexture42.translateFrame" - }, - { - "to": "Facade_Texture_build_Clear_02_1", - "toAttribute": "rotateFrame", - "toAttributeComplete": "Facade_Texture_build_Clear_02_1.rotateFrame", - "from": "place2dTexture42", - "fromAttribute": "place2dTexture42.rotateFrame" - }, - { - "to": "Facade_Texture_build_Clear_02_1", - "toAttribute": "mirrorU", - "toAttributeComplete": "Facade_Texture_build_Clear_02_1.mirrorU", - "from": "place2dTexture42", - "fromAttribute": "place2dTexture42.mirrorU" - }, - { - "to": "Facade_Texture_build_Clear_02_1", - "toAttribute": "mirrorV", - "toAttributeComplete": "Facade_Texture_build_Clear_02_1.mirrorV", - "from": "place2dTexture42", - "fromAttribute": "place2dTexture42.mirrorV" - }, - { - "to": "Facade_Texture_build_Clear_02_1", - "toAttribute": "stagger", - "toAttributeComplete": "Facade_Texture_build_Clear_02_1.stagger", - "from": "place2dTexture42", - "fromAttribute": "place2dTexture42.stagger" - }, - { - "to": "Facade_Texture_build_Clear_02_1", - "toAttribute": "wrapU", - "toAttributeComplete": "Facade_Texture_build_Clear_02_1.wrapU", - "from": "place2dTexture42", - "fromAttribute": "place2dTexture42.wrapU" - }, - { - "to": "Facade_Texture_build_Clear_02_1", - "toAttribute": "wrapV", - "toAttributeComplete": "Facade_Texture_build_Clear_02_1.wrapV", - "from": "place2dTexture42", - "fromAttribute": "place2dTexture42.wrapV" - }, - { - "to": "Facade_Texture_build_Clear_02_1", - "toAttribute": "repeatUV", - "toAttributeComplete": "Facade_Texture_build_Clear_02_1.repeatUV", - "from": "place2dTexture42", - "fromAttribute": "place2dTexture42.repeatUV" - }, - { - "to": "Facade_Texture_build_Clear_02_1", - "toAttribute": "repeatU", - "toAttributeComplete": "Facade_Texture_build_Clear_02_1.repeatU", - "from": "place2dTexture42", - "fromAttribute": "place2dTexture42.repeatUV" - }, - { - "to": "Facade_Texture_build_Clear_02_1", - "toAttribute": "repeatV", - "toAttributeComplete": "Facade_Texture_build_Clear_02_1.repeatV", - "from": "place2dTexture42", - "fromAttribute": "place2dTexture42.repeatUV" - }, - { - "to": "Facade_Texture_build_Clear_02_1", - "toAttribute": "offset", - "toAttributeComplete": "Facade_Texture_build_Clear_02_1.offset", - "from": "place2dTexture42", - "fromAttribute": "place2dTexture42.offset" - }, - { - "to": "Facade_Texture_build_Clear_02_1", - "toAttribute": "offsetU", - "toAttributeComplete": "Facade_Texture_build_Clear_02_1.offsetU", - "from": "place2dTexture42", - "fromAttribute": "place2dTexture42.offset" - }, - { - "to": "Facade_Texture_build_Clear_02_1", - "toAttribute": "offsetV", - "toAttributeComplete": "Facade_Texture_build_Clear_02_1.offsetV", - "from": "place2dTexture42", - "fromAttribute": "place2dTexture42.offset" - }, - { - "to": "Facade_Texture_build_Clear_02_1", - "toAttribute": "rotateUV", - "toAttributeComplete": "Facade_Texture_build_Clear_02_1.rotateUV", - "from": "place2dTexture42", - "fromAttribute": "place2dTexture42.rotateUV" - }, - { - "to": "Facade_Texture_build_Clear_02_1", - "toAttribute": "noiseUV", - "toAttributeComplete": "Facade_Texture_build_Clear_02_1.noiseUV", - "from": "place2dTexture42", - "fromAttribute": "place2dTexture42.noiseUV" - }, - { - "to": "Facade_Texture_build_Clear_02_1", - "toAttribute": "noiseU", - "toAttributeComplete": "Facade_Texture_build_Clear_02_1.noiseU", - "from": "place2dTexture42", - "fromAttribute": "place2dTexture42.noiseUV" - }, - { - "to": "Facade_Texture_build_Clear_02_1", - "toAttribute": "noiseV", - "toAttributeComplete": "Facade_Texture_build_Clear_02_1.noiseV", - "from": "place2dTexture42", - "fromAttribute": "place2dTexture42.noiseUV" - }, - { - "to": "Facade_Texture_build_Clear_02_1", - "toAttribute": "vertexCameraOne", - "toAttributeComplete": "Facade_Texture_build_Clear_02_1.vertexCameraOne", - "from": "place2dTexture42", - "fromAttribute": "place2dTexture42.vertexCameraOne" - }, - { - "to": "Facade_Texture_build_Clear_02_1", - "toAttribute": "vertexCameraOneX", - "toAttributeComplete": "Facade_Texture_build_Clear_02_1.vertexCameraOneX", - "from": "place2dTexture42", - "fromAttribute": "place2dTexture42.vertexCameraOne" - }, - { - "to": "Facade_Texture_build_Clear_02_1", - "toAttribute": "vertexCameraOneY", - "toAttributeComplete": "Facade_Texture_build_Clear_02_1.vertexCameraOneY", - "from": "place2dTexture42", - "fromAttribute": "place2dTexture42.vertexCameraOne" - }, - { - "to": "Facade_Texture_build_Clear_02_1", - "toAttribute": "vertexCameraOneZ", - "toAttributeComplete": "Facade_Texture_build_Clear_02_1.vertexCameraOneZ", - "from": "place2dTexture42", - "fromAttribute": "place2dTexture42.vertexCameraOne" - }, - { - "to": "Facade_Texture_build_Clear_02_1", - "toAttribute": "vertexUvOne", - "toAttributeComplete": "Facade_Texture_build_Clear_02_1.vertexUvOne", - "from": "place2dTexture42", - "fromAttribute": "place2dTexture42.vertexUvOne" - }, - { - "to": "Facade_Texture_build_Clear_02_1", - "toAttribute": "vertexUvOneU", - "toAttributeComplete": "Facade_Texture_build_Clear_02_1.vertexUvOneU", - "from": "place2dTexture42", - "fromAttribute": "place2dTexture42.vertexUvOne" - }, - { - "to": "Facade_Texture_build_Clear_02_1", - "toAttribute": "vertexUvOneV", - "toAttributeComplete": "Facade_Texture_build_Clear_02_1.vertexUvOneV", - "from": "place2dTexture42", - "fromAttribute": "place2dTexture42.vertexUvOne" - }, - { - "to": "Facade_Texture_build_Clear_02_1", - "toAttribute": "vertexUvTwo", - "toAttributeComplete": "Facade_Texture_build_Clear_02_1.vertexUvTwo", - "from": "place2dTexture42", - "fromAttribute": "place2dTexture42.vertexUvTwo" - }, - { - "to": "Facade_Texture_build_Clear_02_1", - "toAttribute": "vertexUvTwoU", - "toAttributeComplete": "Facade_Texture_build_Clear_02_1.vertexUvTwoU", - "from": "place2dTexture42", - "fromAttribute": "place2dTexture42.vertexUvTwo" - }, - { - "to": "Facade_Texture_build_Clear_02_1", - "toAttribute": "vertexUvTwoV", - "toAttributeComplete": "Facade_Texture_build_Clear_02_1.vertexUvTwoV", - "from": "place2dTexture42", - "fromAttribute": "place2dTexture42.vertexUvTwo" - }, - { - "to": "Facade_Texture_build_Clear_02_1", - "toAttribute": "vertexUvThree", - "toAttributeComplete": "Facade_Texture_build_Clear_02_1.vertexUvThree", - "from": "place2dTexture42", - "fromAttribute": "place2dTexture42.vertexUvThree" - }, - { - "to": "Facade_Texture_build_Clear_02_1", - "toAttribute": "vertexUvThreeU", - "toAttributeComplete": "Facade_Texture_build_Clear_02_1.vertexUvThreeU", - "from": "place2dTexture42", - "fromAttribute": "place2dTexture42.vertexUvThree" - }, - { - "to": "Facade_Texture_build_Clear_02_1", - "toAttribute": "vertexUvThreeV", - "toAttributeComplete": "Facade_Texture_build_Clear_02_1.vertexUvThreeV", - "from": "place2dTexture42", - "fromAttribute": "place2dTexture42.vertexUvThree" - }, - { - "to": "bump2d3", - "toAttribute": "bumpValue", - "toAttributeComplete": "bump2d3.bumpValue", - "from": "remapValue2", - "fromAttribute": "remapValue2.outValue" - }, - { - "to": "remapValue2", - "toAttribute": "inputValue", - "toAttributeComplete": "remapValue2.inputValue", - "from": "blendColors8", - "fromAttribute": "blendColors8.outputR" - }, - { - "to": "blendColors8", - "toAttribute": "blender", - "toAttributeComplete": "blendColors8.blender", - "from": "aiNoise1", - "fromAttribute": "aiNoise1.outColorR" - }, - { - "to": "blendColors8", - "toAttribute": "color1", - "toAttributeComplete": "blendColors8.color1", - "from": "Facade_Texture_build_Clear_STL_1", - "fromAttribute": "Facade_Texture_build_Clear_STL_1.outColor" - }, - { - "to": "blendColors8", - "toAttribute": "color1R", - "toAttributeComplete": "blendColors8.color1R", - "from": "Facade_Texture_build_Clear_STL_1", - "fromAttribute": "Facade_Texture_build_Clear_STL_1.outColor" - }, - { - "to": "blendColors8", - "toAttribute": "color1G", - "toAttributeComplete": "blendColors8.color1G", - "from": "Facade_Texture_build_Clear_STL_1", - "fromAttribute": "Facade_Texture_build_Clear_STL_1.outColor" - }, - { - "to": "blendColors8", - "toAttribute": "color1B", - "toAttributeComplete": "blendColors8.color1B", - "from": "Facade_Texture_build_Clear_STL_1", - "fromAttribute": "Facade_Texture_build_Clear_STL_1.outColor" - }, - { - "to": "blendColors8", - "toAttribute": "color2R", - "toAttributeComplete": "blendColors8.color2R", - "from": "remapValue6", - "fromAttribute": "remapValue6.outValue" - }, - { - "to": "Facade_Texture_build_Clear_STL_1", - "toAttribute": "uvCoord", - "toAttributeComplete": "Facade_Texture_build_Clear_STL_1.uvCoord", - "from": "place2dTexture37", - "fromAttribute": "place2dTexture37.outUV" - }, - { - "to": "Facade_Texture_build_Clear_STL_1", - "toAttribute": "uCoord", - "toAttributeComplete": "Facade_Texture_build_Clear_STL_1.uCoord", - "from": "place2dTexture37", - "fromAttribute": "place2dTexture37.outUV" - }, - { - "to": "Facade_Texture_build_Clear_STL_1", - "toAttribute": "vCoord", - "toAttributeComplete": "Facade_Texture_build_Clear_STL_1.vCoord", - "from": "place2dTexture37", - "fromAttribute": "place2dTexture37.outUV" - }, - { - "to": "Facade_Texture_build_Clear_STL_1", - "toAttribute": "uvFilterSize", - "toAttributeComplete": "Facade_Texture_build_Clear_STL_1.uvFilterSize", - "from": "place2dTexture37", - "fromAttribute": "place2dTexture37.outUvFilterSize" - }, - { - "to": "Facade_Texture_build_Clear_STL_1", - "toAttribute": "uvFilterSizeX", - "toAttributeComplete": "Facade_Texture_build_Clear_STL_1.uvFilterSizeX", - "from": "place2dTexture37", - "fromAttribute": "place2dTexture37.outUvFilterSize" - }, - { - "to": "Facade_Texture_build_Clear_STL_1", - "toAttribute": "uvFilterSizeY", - "toAttributeComplete": "Facade_Texture_build_Clear_STL_1.uvFilterSizeY", - "from": "place2dTexture37", - "fromAttribute": "place2dTexture37.outUvFilterSize" - }, - { - "to": "Facade_Texture_build_Clear_STL_1", - "toAttribute": "coverage", - "toAttributeComplete": "Facade_Texture_build_Clear_STL_1.coverage", - "from": "place2dTexture37", - "fromAttribute": "place2dTexture37.coverage" - }, - { - "to": "Facade_Texture_build_Clear_STL_1", - "toAttribute": "coverageU", - "toAttributeComplete": "Facade_Texture_build_Clear_STL_1.coverageU", - "from": "place2dTexture37", - "fromAttribute": "place2dTexture37.coverage" - }, - { - "to": "Facade_Texture_build_Clear_STL_1", - "toAttribute": "coverageV", - "toAttributeComplete": "Facade_Texture_build_Clear_STL_1.coverageV", - "from": "place2dTexture37", - "fromAttribute": "place2dTexture37.coverage" - }, - { - "to": "Facade_Texture_build_Clear_STL_1", - "toAttribute": "translateFrame", - "toAttributeComplete": "Facade_Texture_build_Clear_STL_1.translateFrame", - "from": "place2dTexture37", - "fromAttribute": "place2dTexture37.translateFrame" - }, - { - "to": "Facade_Texture_build_Clear_STL_1", - "toAttribute": "translateFrameU", - "toAttributeComplete": "Facade_Texture_build_Clear_STL_1.translateFrameU", - "from": "place2dTexture37", - "fromAttribute": "place2dTexture37.translateFrame" - }, - { - "to": "Facade_Texture_build_Clear_STL_1", - "toAttribute": "translateFrameV", - "toAttributeComplete": "Facade_Texture_build_Clear_STL_1.translateFrameV", - "from": "place2dTexture37", - "fromAttribute": "place2dTexture37.translateFrame" - }, - { - "to": "Facade_Texture_build_Clear_STL_1", - "toAttribute": "rotateFrame", - "toAttributeComplete": "Facade_Texture_build_Clear_STL_1.rotateFrame", - "from": "place2dTexture37", - "fromAttribute": "place2dTexture37.rotateFrame" - }, - { - "to": "Facade_Texture_build_Clear_STL_1", - "toAttribute": "mirrorU", - "toAttributeComplete": "Facade_Texture_build_Clear_STL_1.mirrorU", - "from": "place2dTexture37", - "fromAttribute": "place2dTexture37.mirrorU" - }, - { - "to": "Facade_Texture_build_Clear_STL_1", - "toAttribute": "mirrorV", - "toAttributeComplete": "Facade_Texture_build_Clear_STL_1.mirrorV", - "from": "place2dTexture37", - "fromAttribute": "place2dTexture37.mirrorV" - }, - { - "to": "Facade_Texture_build_Clear_STL_1", - "toAttribute": "stagger", - "toAttributeComplete": "Facade_Texture_build_Clear_STL_1.stagger", - "from": "place2dTexture37", - "fromAttribute": "place2dTexture37.stagger" - }, - { - "to": "Facade_Texture_build_Clear_STL_1", - "toAttribute": "wrapU", - "toAttributeComplete": "Facade_Texture_build_Clear_STL_1.wrapU", - "from": "place2dTexture37", - "fromAttribute": "place2dTexture37.wrapU" - }, - { - "to": "Facade_Texture_build_Clear_STL_1", - "toAttribute": "wrapV", - "toAttributeComplete": "Facade_Texture_build_Clear_STL_1.wrapV", - "from": "place2dTexture37", - "fromAttribute": "place2dTexture37.wrapV" - }, - { - "to": "Facade_Texture_build_Clear_STL_1", - "toAttribute": "repeatUV", - "toAttributeComplete": "Facade_Texture_build_Clear_STL_1.repeatUV", - "from": "place2dTexture37", - "fromAttribute": "place2dTexture37.repeatUV" - }, - { - "to": "Facade_Texture_build_Clear_STL_1", - "toAttribute": "repeatU", - "toAttributeComplete": "Facade_Texture_build_Clear_STL_1.repeatU", - "from": "place2dTexture37", - "fromAttribute": "place2dTexture37.repeatUV" - }, - { - "to": "Facade_Texture_build_Clear_STL_1", - "toAttribute": "repeatV", - "toAttributeComplete": "Facade_Texture_build_Clear_STL_1.repeatV", - "from": "place2dTexture37", - "fromAttribute": "place2dTexture37.repeatUV" - }, - { - "to": "Facade_Texture_build_Clear_STL_1", - "toAttribute": "offset", - "toAttributeComplete": "Facade_Texture_build_Clear_STL_1.offset", - "from": "place2dTexture37", - "fromAttribute": "place2dTexture37.offset" - }, - { - "to": "Facade_Texture_build_Clear_STL_1", - "toAttribute": "offsetU", - "toAttributeComplete": "Facade_Texture_build_Clear_STL_1.offsetU", - "from": "place2dTexture37", - "fromAttribute": "place2dTexture37.offset" - }, - { - "to": "Facade_Texture_build_Clear_STL_1", - "toAttribute": "offsetV", - "toAttributeComplete": "Facade_Texture_build_Clear_STL_1.offsetV", - "from": "place2dTexture37", - "fromAttribute": "place2dTexture37.offset" - }, - { - "to": "Facade_Texture_build_Clear_STL_1", - "toAttribute": "rotateUV", - "toAttributeComplete": "Facade_Texture_build_Clear_STL_1.rotateUV", - "from": "place2dTexture37", - "fromAttribute": "place2dTexture37.rotateUV" - }, - { - "to": "Facade_Texture_build_Clear_STL_1", - "toAttribute": "noiseUV", - "toAttributeComplete": "Facade_Texture_build_Clear_STL_1.noiseUV", - "from": "place2dTexture37", - "fromAttribute": "place2dTexture37.noiseUV" - }, - { - "to": "Facade_Texture_build_Clear_STL_1", - "toAttribute": "noiseU", - "toAttributeComplete": "Facade_Texture_build_Clear_STL_1.noiseU", - "from": "place2dTexture37", - "fromAttribute": "place2dTexture37.noiseUV" - }, - { - "to": "Facade_Texture_build_Clear_STL_1", - "toAttribute": "noiseV", - "toAttributeComplete": "Facade_Texture_build_Clear_STL_1.noiseV", - "from": "place2dTexture37", - "fromAttribute": "place2dTexture37.noiseUV" - }, - { - "to": "Facade_Texture_build_Clear_STL_1", - "toAttribute": "vertexCameraOne", - "toAttributeComplete": "Facade_Texture_build_Clear_STL_1.vertexCameraOne", - "from": "place2dTexture37", - "fromAttribute": "place2dTexture37.vertexCameraOne" - }, - { - "to": "Facade_Texture_build_Clear_STL_1", - "toAttribute": "vertexCameraOneX", - "toAttributeComplete": "Facade_Texture_build_Clear_STL_1.vertexCameraOneX", - "from": "place2dTexture37", - "fromAttribute": "place2dTexture37.vertexCameraOne" - }, - { - "to": "Facade_Texture_build_Clear_STL_1", - "toAttribute": "vertexCameraOneY", - "toAttributeComplete": "Facade_Texture_build_Clear_STL_1.vertexCameraOneY", - "from": "place2dTexture37", - "fromAttribute": "place2dTexture37.vertexCameraOne" - }, - { - "to": "Facade_Texture_build_Clear_STL_1", - "toAttribute": "vertexCameraOneZ", - "toAttributeComplete": "Facade_Texture_build_Clear_STL_1.vertexCameraOneZ", - "from": "place2dTexture37", - "fromAttribute": "place2dTexture37.vertexCameraOne" - }, - { - "to": "Facade_Texture_build_Clear_STL_1", - "toAttribute": "vertexUvOne", - "toAttributeComplete": "Facade_Texture_build_Clear_STL_1.vertexUvOne", - "from": "place2dTexture37", - "fromAttribute": "place2dTexture37.vertexUvOne" - }, - { - "to": "Facade_Texture_build_Clear_STL_1", - "toAttribute": "vertexUvOneU", - "toAttributeComplete": "Facade_Texture_build_Clear_STL_1.vertexUvOneU", - "from": "place2dTexture37", - "fromAttribute": "place2dTexture37.vertexUvOne" - }, - { - "to": "Facade_Texture_build_Clear_STL_1", - "toAttribute": "vertexUvOneV", - "toAttributeComplete": "Facade_Texture_build_Clear_STL_1.vertexUvOneV", - "from": "place2dTexture37", - "fromAttribute": "place2dTexture37.vertexUvOne" - }, - { - "to": "Facade_Texture_build_Clear_STL_1", - "toAttribute": "vertexUvTwo", - "toAttributeComplete": "Facade_Texture_build_Clear_STL_1.vertexUvTwo", - "from": "place2dTexture37", - "fromAttribute": "place2dTexture37.vertexUvTwo" - }, - { - "to": "Facade_Texture_build_Clear_STL_1", - "toAttribute": "vertexUvTwoU", - "toAttributeComplete": "Facade_Texture_build_Clear_STL_1.vertexUvTwoU", - "from": "place2dTexture37", - "fromAttribute": "place2dTexture37.vertexUvTwo" - }, - { - "to": "Facade_Texture_build_Clear_STL_1", - "toAttribute": "vertexUvTwoV", - "toAttributeComplete": "Facade_Texture_build_Clear_STL_1.vertexUvTwoV", - "from": "place2dTexture37", - "fromAttribute": "place2dTexture37.vertexUvTwo" - }, - { - "to": "Facade_Texture_build_Clear_STL_1", - "toAttribute": "vertexUvThree", - "toAttributeComplete": "Facade_Texture_build_Clear_STL_1.vertexUvThree", - "from": "place2dTexture37", - "fromAttribute": "place2dTexture37.vertexUvThree" - }, - { - "to": "Facade_Texture_build_Clear_STL_1", - "toAttribute": "vertexUvThreeU", - "toAttributeComplete": "Facade_Texture_build_Clear_STL_1.vertexUvThreeU", - "from": "place2dTexture37", - "fromAttribute": "place2dTexture37.vertexUvThree" - }, - { - "to": "Facade_Texture_build_Clear_STL_1", - "toAttribute": "vertexUvThreeV", - "toAttributeComplete": "Facade_Texture_build_Clear_STL_1.vertexUvThreeV", - "from": "place2dTexture37", - "fromAttribute": "place2dTexture37.vertexUvThree" - }, - { - "to": "remapValue6", - "toAttribute": "inputValue", - "toAttributeComplete": "remapValue6.inputValue", - "from": "Facade_Texture_build_Clear_STL_02_1", - "fromAttribute": "Facade_Texture_build_Clear_STL_02_1.outAlpha" - }, - { - "to": "Facade_Texture_build_Clear_STL_02_1", - "toAttribute": "uvCoord", - "toAttributeComplete": "Facade_Texture_build_Clear_STL_02_1.uvCoord", - "from": "place2dTexture41", - "fromAttribute": "place2dTexture41.outUV" - }, - { - "to": "Facade_Texture_build_Clear_STL_02_1", - "toAttribute": "uCoord", - "toAttributeComplete": "Facade_Texture_build_Clear_STL_02_1.uCoord", - "from": "place2dTexture41", - "fromAttribute": "place2dTexture41.outUV" - }, - { - "to": "Facade_Texture_build_Clear_STL_02_1", - "toAttribute": "vCoord", - "toAttributeComplete": "Facade_Texture_build_Clear_STL_02_1.vCoord", - "from": "place2dTexture41", - "fromAttribute": "place2dTexture41.outUV" - }, - { - "to": "Facade_Texture_build_Clear_STL_02_1", - "toAttribute": "uvFilterSize", - "toAttributeComplete": "Facade_Texture_build_Clear_STL_02_1.uvFilterSize", - "from": "place2dTexture41", - "fromAttribute": "place2dTexture41.outUvFilterSize" - }, - { - "to": "Facade_Texture_build_Clear_STL_02_1", - "toAttribute": "uvFilterSizeX", - "toAttributeComplete": "Facade_Texture_build_Clear_STL_02_1.uvFilterSizeX", - "from": "place2dTexture41", - "fromAttribute": "place2dTexture41.outUvFilterSize" - }, - { - "to": "Facade_Texture_build_Clear_STL_02_1", - "toAttribute": "uvFilterSizeY", - "toAttributeComplete": "Facade_Texture_build_Clear_STL_02_1.uvFilterSizeY", - "from": "place2dTexture41", - "fromAttribute": "place2dTexture41.outUvFilterSize" - }, - { - "to": "Facade_Texture_build_Clear_STL_02_1", - "toAttribute": "coverage", - "toAttributeComplete": "Facade_Texture_build_Clear_STL_02_1.coverage", - "from": "place2dTexture41", - "fromAttribute": "place2dTexture41.coverage" - }, - { - "to": "Facade_Texture_build_Clear_STL_02_1", - "toAttribute": "coverageU", - "toAttributeComplete": "Facade_Texture_build_Clear_STL_02_1.coverageU", - "from": "place2dTexture41", - "fromAttribute": "place2dTexture41.coverage" - }, - { - "to": "Facade_Texture_build_Clear_STL_02_1", - "toAttribute": "coverageV", - "toAttributeComplete": "Facade_Texture_build_Clear_STL_02_1.coverageV", - "from": "place2dTexture41", - "fromAttribute": "place2dTexture41.coverage" - }, - { - "to": "Facade_Texture_build_Clear_STL_02_1", - "toAttribute": "translateFrame", - "toAttributeComplete": "Facade_Texture_build_Clear_STL_02_1.translateFrame", - "from": "place2dTexture41", - "fromAttribute": "place2dTexture41.translateFrame" - }, - { - "to": "Facade_Texture_build_Clear_STL_02_1", - "toAttribute": "translateFrameU", - "toAttributeComplete": "Facade_Texture_build_Clear_STL_02_1.translateFrameU", - "from": "place2dTexture41", - "fromAttribute": "place2dTexture41.translateFrame" - }, - { - "to": "Facade_Texture_build_Clear_STL_02_1", - "toAttribute": "translateFrameV", - "toAttributeComplete": "Facade_Texture_build_Clear_STL_02_1.translateFrameV", - "from": "place2dTexture41", - "fromAttribute": "place2dTexture41.translateFrame" - }, - { - "to": "Facade_Texture_build_Clear_STL_02_1", - "toAttribute": "rotateFrame", - "toAttributeComplete": "Facade_Texture_build_Clear_STL_02_1.rotateFrame", - "from": "place2dTexture41", - "fromAttribute": "place2dTexture41.rotateFrame" - }, - { - "to": "Facade_Texture_build_Clear_STL_02_1", - "toAttribute": "mirrorU", - "toAttributeComplete": "Facade_Texture_build_Clear_STL_02_1.mirrorU", - "from": "place2dTexture41", - "fromAttribute": "place2dTexture41.mirrorU" - }, - { - "to": "Facade_Texture_build_Clear_STL_02_1", - "toAttribute": "mirrorV", - "toAttributeComplete": "Facade_Texture_build_Clear_STL_02_1.mirrorV", - "from": "place2dTexture41", - "fromAttribute": "place2dTexture41.mirrorV" - }, - { - "to": "Facade_Texture_build_Clear_STL_02_1", - "toAttribute": "stagger", - "toAttributeComplete": "Facade_Texture_build_Clear_STL_02_1.stagger", - "from": "place2dTexture41", - "fromAttribute": "place2dTexture41.stagger" - }, - { - "to": "Facade_Texture_build_Clear_STL_02_1", - "toAttribute": "wrapU", - "toAttributeComplete": "Facade_Texture_build_Clear_STL_02_1.wrapU", - "from": "place2dTexture41", - "fromAttribute": "place2dTexture41.wrapU" - }, - { - "to": "Facade_Texture_build_Clear_STL_02_1", - "toAttribute": "wrapV", - "toAttributeComplete": "Facade_Texture_build_Clear_STL_02_1.wrapV", - "from": "place2dTexture41", - "fromAttribute": "place2dTexture41.wrapV" - }, - { - "to": "Facade_Texture_build_Clear_STL_02_1", - "toAttribute": "repeatUV", - "toAttributeComplete": "Facade_Texture_build_Clear_STL_02_1.repeatUV", - "from": "place2dTexture41", - "fromAttribute": "place2dTexture41.repeatUV" - }, - { - "to": "Facade_Texture_build_Clear_STL_02_1", - "toAttribute": "repeatU", - "toAttributeComplete": "Facade_Texture_build_Clear_STL_02_1.repeatU", - "from": "place2dTexture41", - "fromAttribute": "place2dTexture41.repeatUV" - }, - { - "to": "Facade_Texture_build_Clear_STL_02_1", - "toAttribute": "repeatV", - "toAttributeComplete": "Facade_Texture_build_Clear_STL_02_1.repeatV", - "from": "place2dTexture41", - "fromAttribute": "place2dTexture41.repeatUV" - }, - { - "to": "Facade_Texture_build_Clear_STL_02_1", - "toAttribute": "offset", - "toAttributeComplete": "Facade_Texture_build_Clear_STL_02_1.offset", - "from": "place2dTexture41", - "fromAttribute": "place2dTexture41.offset" - }, - { - "to": "Facade_Texture_build_Clear_STL_02_1", - "toAttribute": "offsetU", - "toAttributeComplete": "Facade_Texture_build_Clear_STL_02_1.offsetU", - "from": "place2dTexture41", - "fromAttribute": "place2dTexture41.offset" - }, - { - "to": "Facade_Texture_build_Clear_STL_02_1", - "toAttribute": "offsetV", - "toAttributeComplete": "Facade_Texture_build_Clear_STL_02_1.offsetV", - "from": "place2dTexture41", - "fromAttribute": "place2dTexture41.offset" - }, - { - "to": "Facade_Texture_build_Clear_STL_02_1", - "toAttribute": "rotateUV", - "toAttributeComplete": "Facade_Texture_build_Clear_STL_02_1.rotateUV", - "from": "place2dTexture41", - "fromAttribute": "place2dTexture41.rotateUV" - }, - { - "to": "Facade_Texture_build_Clear_STL_02_1", - "toAttribute": "noiseUV", - "toAttributeComplete": "Facade_Texture_build_Clear_STL_02_1.noiseUV", - "from": "place2dTexture41", - "fromAttribute": "place2dTexture41.noiseUV" - }, - { - "to": "Facade_Texture_build_Clear_STL_02_1", - "toAttribute": "noiseU", - "toAttributeComplete": "Facade_Texture_build_Clear_STL_02_1.noiseU", - "from": "place2dTexture41", - "fromAttribute": "place2dTexture41.noiseUV" - }, - { - "to": "Facade_Texture_build_Clear_STL_02_1", - "toAttribute": "noiseV", - "toAttributeComplete": "Facade_Texture_build_Clear_STL_02_1.noiseV", - "from": "place2dTexture41", - "fromAttribute": "place2dTexture41.noiseUV" - }, - { - "to": "Facade_Texture_build_Clear_STL_02_1", - "toAttribute": "vertexCameraOne", - "toAttributeComplete": "Facade_Texture_build_Clear_STL_02_1.vertexCameraOne", - "from": "place2dTexture41", - "fromAttribute": "place2dTexture41.vertexCameraOne" - }, - { - "to": "Facade_Texture_build_Clear_STL_02_1", - "toAttribute": "vertexCameraOneX", - "toAttributeComplete": "Facade_Texture_build_Clear_STL_02_1.vertexCameraOneX", - "from": "place2dTexture41", - "fromAttribute": "place2dTexture41.vertexCameraOne" - }, - { - "to": "Facade_Texture_build_Clear_STL_02_1", - "toAttribute": "vertexCameraOneY", - "toAttributeComplete": "Facade_Texture_build_Clear_STL_02_1.vertexCameraOneY", - "from": "place2dTexture41", - "fromAttribute": "place2dTexture41.vertexCameraOne" - }, - { - "to": "Facade_Texture_build_Clear_STL_02_1", - "toAttribute": "vertexCameraOneZ", - "toAttributeComplete": "Facade_Texture_build_Clear_STL_02_1.vertexCameraOneZ", - "from": "place2dTexture41", - "fromAttribute": "place2dTexture41.vertexCameraOne" - }, - { - "to": "Facade_Texture_build_Clear_STL_02_1", - "toAttribute": "vertexUvOne", - "toAttributeComplete": "Facade_Texture_build_Clear_STL_02_1.vertexUvOne", - "from": "place2dTexture41", - "fromAttribute": "place2dTexture41.vertexUvOne" - }, - { - "to": "Facade_Texture_build_Clear_STL_02_1", - "toAttribute": "vertexUvOneU", - "toAttributeComplete": "Facade_Texture_build_Clear_STL_02_1.vertexUvOneU", - "from": "place2dTexture41", - "fromAttribute": "place2dTexture41.vertexUvOne" - }, - { - "to": "Facade_Texture_build_Clear_STL_02_1", - "toAttribute": "vertexUvOneV", - "toAttributeComplete": "Facade_Texture_build_Clear_STL_02_1.vertexUvOneV", - "from": "place2dTexture41", - "fromAttribute": "place2dTexture41.vertexUvOne" - }, - { - "to": "Facade_Texture_build_Clear_STL_02_1", - "toAttribute": "vertexUvTwo", - "toAttributeComplete": "Facade_Texture_build_Clear_STL_02_1.vertexUvTwo", - "from": "place2dTexture41", - "fromAttribute": "place2dTexture41.vertexUvTwo" - }, - { - "to": "Facade_Texture_build_Clear_STL_02_1", - "toAttribute": "vertexUvTwoU", - "toAttributeComplete": "Facade_Texture_build_Clear_STL_02_1.vertexUvTwoU", - "from": "place2dTexture41", - "fromAttribute": "place2dTexture41.vertexUvTwo" - }, - { - "to": "Facade_Texture_build_Clear_STL_02_1", - "toAttribute": "vertexUvTwoV", - "toAttributeComplete": "Facade_Texture_build_Clear_STL_02_1.vertexUvTwoV", - "from": "place2dTexture41", - "fromAttribute": "place2dTexture41.vertexUvTwo" - }, - { - "to": "Facade_Texture_build_Clear_STL_02_1", - "toAttribute": "vertexUvThree", - "toAttributeComplete": "Facade_Texture_build_Clear_STL_02_1.vertexUvThree", - "from": "place2dTexture41", - "fromAttribute": "place2dTexture41.vertexUvThree" - }, - { - "to": "Facade_Texture_build_Clear_STL_02_1", - "toAttribute": "vertexUvThreeU", - "toAttributeComplete": "Facade_Texture_build_Clear_STL_02_1.vertexUvThreeU", - "from": "place2dTexture41", - "fromAttribute": "place2dTexture41.vertexUvThree" - }, - { - "to": "Facade_Texture_build_Clear_STL_02_1", - "toAttribute": "vertexUvThreeV", - "toAttributeComplete": "Facade_Texture_build_Clear_STL_02_1.vertexUvThreeV", - "from": "place2dTexture41", - "fromAttribute": "place2dTexture41.vertexUvThree" - }, - { - "to": "remapValue1", - "toAttribute": "inputValue", - "toAttributeComplete": "remapValue1.inputValue", - "from": "reverse2", - "fromAttribute": "reverse2.outputX" - }, - { - "to": "reverse2", - "toAttribute": "input", - "toAttributeComplete": "reverse2.input", - "from": "blendColors8", - "fromAttribute": "blendColors8.output" - }, - { - "to": "reverse2", - "toAttribute": "inputX", - "toAttributeComplete": "reverse2.inputX", - "from": "blendColors8", - "fromAttribute": "blendColors8.output" - }, - { - "to": "reverse2", - "toAttribute": "inputY", - "toAttributeComplete": "reverse2.inputY", - "from": "blendColors8", - "fromAttribute": "blendColors8.output" - }, - { - "to": "reverse2", - "toAttribute": "inputZ", - "toAttributeComplete": "reverse2.inputZ", - "from": "blendColors8", - "fromAttribute": "blendColors8.output" - } - ], - "nodes": { - "place2dTexture40": { - "data": {}, - "type": "place2dTexture" - }, - "pasted__place2dTexture40": { - "data": {}, - "type": "place2dTexture" - }, - "remapValue3": { - "data": { - "outColorB": { - "type": "float", - "value": 0.331360399723053 - }, - "outColorG": { - "type": "float", - "value": 0.331360399723053 - }, - "value": { - "type": "TdataCompound", - "value": [ - [ - 0.0, - 0.0, - 1.0 - ], - [ - 1.0, - 1.0, - 1.0 - ], - [ - 0.24347825348377228, - 0.0, - 1.0 - ], - [ - 0.365217387676239, - 0.8799999952316284, - 1.0 - ] - ] - }, - "outColorR": { - "type": "float", - "value": 0.331360399723053 - }, - "outColor": { - "type": "float3", - "value": [ - [ - 0.331360399723053, - 0.331360399723053, - 0.331360399723053 - ] - ] - }, - "inputValue": { - "type": "float", - "value": 0.331360399723053 - }, - "outValue": { - "type": "float", - "value": 0.6352623105049133 - } - }, - "type": "remapValue" - }, - "place2dTexture43": { - "data": { - "repeatUV": { - "type": "float2", - "value": [ - [ - 10.0, - 10.0 - ] - ] - }, - "repeatU": { - "type": "float", - "value": 10.0 - }, - "repeatV": { - "type": "float", - "value": 10.0 - } - }, - "type": "place2dTexture" - }, - "place2dTexture44": { - "data": { - "repeatUV": { - "type": "float2", - "value": [ - [ - 10.0, - 10.0 - ] - ] - }, - "repeatU": { - "type": "float", - "value": 10.0 - }, - "repeatV": { - "type": "float", - "value": 10.0 - } - }, - "type": "place2dTexture" - }, - "place2dTexture45": { - "data": {}, - "type": "place2dTexture" - }, - "remapValue6": { - "data": { - "outColorB": { - "type": "float", - "value": 1.0 - }, - "outColorG": { - "type": "float", - "value": 1.0 - }, - "value": { - "type": "TdataCompound", - "value": [ - [ - 0.008695651777088642, - 0.10000000149011612, - 1.0 - ], - [ - 1.0, - 1.0, - 1.0 - ], - [ - 0.3478260934352875, - 0.14000000059604645, - 1.0 - ] - ] - }, - "outColorR": { - "type": "float", - "value": 1.0 - }, - "outColor": { - "type": "float3", - "value": [ - [ - 1.0, - 1.0, - 1.0 - ] - ] - }, - "inputValue": { - "type": "float", - "value": 1.0 - }, - "outValue": { - "type": "float", - "value": 1.0 - } - }, - "type": "remapValue" - }, - "ramp1": { - "data": {}, - "type": "ramp" - }, - "place2dTexture42": { - "data": { - "repeatUV": { - "type": "float2", - "value": [ - [ - 10.0, - 10.0 - ] - ] - }, - "repeatU": { - "type": "float", - "value": 10.0 - }, - "repeatV": { - "type": "float", - "value": 10.0 - } - }, - "type": "place2dTexture" - }, - "remapValue1": { - "data": { - "value": { - "type": "TdataCompound", - "value": [ - [ - 0.0, - 0.0, - 1.0 - ], - [ - 1.0, - 1.0, - 1.0 - ], - [ - 0.35652172565460205, - 0.23999999463558197, - 1.0 - ] - ] - } - }, - "type": "remapValue" - }, - "remapValue2": { - "data": { - "outColorB": { - "type": "float", - "value": 1.0 - }, - "outColorG": { - "type": "float", - "value": 1.0 - }, - "value": { - "type": "TdataCompound", - "value": [ - [ - 0.0, - 0.0, - 1.0 - ], - [ - 1.0, - 1.0, - 1.0 - ], - [ - 0.313043475151062, - 0.14000000059604645, - 1.0 - ] - ] - }, - "outColorR": { - "type": "float", - "value": 1.0 - }, - "outColor": { - "type": "float3", - "value": [ - [ - 1.0, - 1.0, - 1.0 - ] - ] - }, - "inputValue": { - "type": "float", - "value": 1.0 - }, - "outValue": { - "type": "float", - "value": 1.0 - } - }, - "type": "remapValue" - }, - "pasted__noise1": { - "data": { - "outColorB": { - "type": "float", - "value": 0.6480807065963745 - }, - "outAlpha": { - "type": "float", - "value": 0.6480807065963745 - }, - "ratio": { - "type": "float", - "value": 1.0 - }, - "outColorG": { - "type": "float", - "value": 0.6480807065963745 - }, - "numWaves": { - "type": "short", - "value": 1 - }, - "outColorR": { - "type": "float", - "value": 0.6480807065963745 - }, - "outColor": { - "type": "float3", - "value": [ - [ - 0.6480807065963745, - 0.6480807065963745, - 0.6480807065963745 - ] - ] - }, - "time": { - "type": "float", - "value": 0.4825174808502197 - }, - "frequencyRatio": { - "type": "float", - "value": 1.0 - }, - "depthMax": { - "type": "short", - "value": 4 - }, - "noiseType": { - "type": "enum", - "value": 4 - } - }, - "type": "noise" - }, - "bump2d1": { - "data": { - "bumpDepth": { - "type": "float", - "value": 0.3499999940395355 - }, - "vCoord": { - "type": "float", - "value": 9.999999747378752e-06 - }, - "infoBits": { - "type": "long", - "value": 3 - }, - "uvCoord": { - "type": "float2", - "value": [ - [ - 0.0, - 9.999999747378752e-06 - ] - ] - } - }, - "type": "bump2d" - }, - "SH_Brick_Dest": { - "data": { - "outColorB": { - "type": "float", - "value": 0.17999999225139618 - }, - "normalCamera": { - "type": "float3", - "value": [ - [ - 0.0, - 0.0, - 1.0 - ] - ] - }, - "baseColor": { - "type": "float3", - "value": [ - [ - 0.22499999403953552, - 0.22499999403953552, - 0.22499999403953552 - ] - ] - }, - "outColorG": { - "type": "float", - "value": 0.17999999225139618 - }, - "normalCameraX": { - "type": "float", - "value": 0.0 - }, - "specularRoughness": { - "type": "float", - "value": 0.0 - }, - "baseColorR": { - "type": "float", - "value": 0.22499999403953552 - }, - "normalCameraY": { - "type": "float", - "value": 0.0 - }, - "outColorR": { - "type": "float", - "value": 0.17999999225139618 - }, - "outColor": { - "type": "float3", - "value": [ - [ - 0.17999999225139618, - 0.17999999225139618, - 0.17999999225139618 - ] - ] - }, - "baseColorG": { - "type": "float", - "value": 0.22499999403953552 - }, - "baseColorB": { - "type": "float", - "value": 0.22499999403953552 - } - }, - "type": "aiStandardSurface" - }, - "reverse2": { - "data": { - "outputZ": { - "type": "float", - "value": 0.0 - }, - "outputX": { - "type": "float", - "value": 0.0 - }, - "inputZ": { - "type": "float", - "value": 1.0 - }, - "inputX": { - "type": "float", - "value": 1.0 - }, - "output": { - "type": "float3", - "value": [ - [ - 0.0, - 1.0, - 0.0 - ] - ] - }, - "input": { - "type": "float3", - "value": [ - [ - 1.0, - 0.0, - 1.0 - ] - ] - } - }, - "type": "reverse" - }, - "remapValue4": { - "data": { - "value": { - "type": "TdataCompound", - "value": [ - [ - 0.0, - 0.23999999463558197, - 1.0 - ], - [ - 1.0, - 1.0, - 1.0 - ] - ] - }, - "outValue": { - "type": "float", - "value": 0.23999999463558197 - } - }, - "type": "remapValue" - }, - "place2dTexture41": { - "data": { - "repeatUV": { - "type": "float2", - "value": [ - [ - 10.0, - 10.0 - ] - ] - }, - "repeatU": { - "type": "float", - "value": 10.0 - }, - "repeatV": { - "type": "float", - "value": 10.0 - } - }, - "type": "place2dTexture" - }, - "place2dTexture54": { - "data": {}, - "type": "place2dTexture" - }, - "SH_Quartier_Pauvre": { - "data": { - "shader2R": { - "type": "float", - "value": 0.17999999225139618 - }, - "mix": { - "type": "float", - "value": 0.0 - }, - "shader2B": { - "type": "float", - "value": 0.17999999225139618 - }, - "shader2": { - "type": "float3", - "value": [ - [ - 0.17999999225139618, - 0.17999999225139618, - 0.17999999225139618 - ] - ] - }, - "shader2G": { - "type": "float", - "value": 0.17999999225139618 - }, - "shader1": { - "type": "float3", - "value": [ - [ - 0.0, - 0.0, - 0.0 - ] - ] - }, - "shader1B": { - "type": "float", - "value": 0.0 - } - }, - "type": "aiMixShader" - }, - "SH_Brick": { - "data": { - "outColorB": { - "type": "float", - "value": 0.0 - }, - "normalCamera": { - "type": "float3", - "value": [ - [ - 0.0, - 0.0, - 1.0 - ] - ] - }, - "baseColor": { - "type": "float3", - "value": [ - [ - 0.0, - 0.0, - 0.0 - ] - ] - }, - "outColorG": { - "type": "float", - "value": 0.0 - }, - "normalCameraX": { - "type": "float", - "value": 0.0 - }, - "specularRoughness": { - "type": "float", - "value": 0.23999999463558197 - }, - "baseColorR": { - "type": "float", - "value": 0.0 - }, - "normalCameraY": { - "type": "float", - "value": 0.0 - }, - "outColorR": { - "type": "float", - "value": 0.0 - }, - "outColor": { - "type": "float3", - "value": [ - [ - 0.0, - 0.0, - 0.0 - ] - ] - }, - "baseColorG": { - "type": "float", - "value": 0.0 - }, - "baseColorB": { - "type": "float", - "value": 0.0 - } - }, - "type": "aiStandardSurface" - }, - "Brick_Facade_STL_Grey_1": { - "data": { - "alphaIsLuminance": { - "type": "bool", - "value": true - }, - "fileTextureName": { - "type": "string", - "value": "Z:/PFE2019/OPALE/03_WORK/01_ASSET_3D/03_PROPS/BATIMENT_PAUVRE_01/01_FAB/04_LOOKDEV/MAYA//sourceimages/Brick_Facade_STL_Grey.png" - }, - "colorSpace": { - "type": "string", - "value": "Raw" - }, - "repeatUV": { - "type": "float2", - "value": [ - [ - 10.0, - 10.0 - ] - ] - }, - "repeatU": { - "type": "float", - "value": 10.0 - }, - "repeatV": { - "type": "float", - "value": 10.0 - }, - "computedFileTextureNamePattern": { - "type": "string", - "value": "Z:/PFE2019/OPALE/03_WORK/01_ASSET_3D/03_PROPS/BATIMENT_PAUVRE_01/01_FAB/04_LOOKDEV/MAYA//sourceimages/Brick_Facade_STL_Grey.png" - } - }, - "type": "file" - }, - "aiNoise1": { - "data": { - "scale": { - "type": "float3", - "value": [ - [ - 0.05000000074505806, - 0.05000000074505806, - 0.05000000074505806 - ] - ] - }, - "octaves": { - "type": "long", - "value": 4 - }, - "scaleX": { - "type": "float", - "value": 0.05000000074505806 - }, - "scaleY": { - "type": "float", - "value": 0.05000000074505806 - }, - "scaleZ": { - "type": "float", - "value": 0.05000000074505806 - }, - "lacunarity": { - "type": "float", - "value": 1.0 - } - }, - "type": "aiNoise" - }, - "Brick_Facade_STL_1": { - "data": { - "fileTextureName": { - "type": "string", - "value": "Z:/PFE2019/OPALE/03_WORK/01_ASSET_3D/03_PROPS/BATIMENT_PAUVRE_01/01_FAB/04_LOOKDEV/MAYA//sourceimages/Brick_Facade_STL.jpg" - }, - "computedFileTextureNamePattern": { - "type": "string", - "value": "Z:/PFE2019/OPALE/03_WORK/01_ASSET_3D/03_PROPS/BATIMENT_PAUVRE_01/01_FAB/04_LOOKDEV/MAYA//sourceimages/Brick_Facade_STL.jpg" - } - }, - "type": "file" - }, - "bump2d3": { - "data": { - "bumpDepth": { - "type": "float", - "value": 0.10000000149011612 - }, - "vCoord": { - "type": "float", - "value": 9.999999747378752e-06 - }, - "infoBits": { - "type": "long", - "value": 3 - }, - "bumpValue": { - "type": "float", - "value": 1.0 - }, - "uvCoord": { - "type": "float2", - "value": [ - [ - 0.0, - 9.999999747378752e-06 - ] - ] - } - }, - "type": "bump2d" - }, - "multiplyDivide1": { - "data": { - "input2": { - "type": "float3", - "value": [ - [ - 0.4876904785633087, - 0.4876904785633087, - 0.4876904785633087 - ] - ] - }, - "operation": { - "type": "enum", - "value": 2 - }, - "input2Y": { - "type": "float", - "value": 0.4876904785633087 - }, - "input2X": { - "type": "float", - "value": 0.4876904785633087 - }, - "input2Z": { - "type": "float", - "value": 0.4876904785633087 - } - }, - "type": "multiplyDivide" - }, - "Facade_Texture_build_Clear_STL_1": { - "data": { - "alphaIsLuminance": { - "type": "bool", - "value": true - }, - "fileTextureName": { - "type": "string", - "value": "Z:/PFE2019/OPALE/03_WORK/01_ASSET_3D/03_PROPS/BATIMENT_PAUVRE_01/01_FAB/04_LOOKDEV/MAYA//sourceimages/Facade_Texture_build_Clear_STL.png" - }, - "colorSpace": { - "type": "string", - "value": "Raw" - }, - "repeatUV": { - "type": "float2", - "value": [ - [ - 10.0, - 10.0 - ] - ] - }, - "repeatU": { - "type": "float", - "value": 10.0 - }, - "repeatV": { - "type": "float", - "value": 10.0 - }, - "computedFileTextureNamePattern": { - "type": "string", - "value": "Z:/PFE2019/OPALE/03_WORK/01_ASSET_3D/03_PROPS/BATIMENT_PAUVRE_01/01_FAB/04_LOOKDEV/MAYA//sourceimages/Facade_Texture_build_Clear_STL.png" - } - }, - "type": "file" - }, - "Facade_Texture_build_02_1": { + "file1": { "data": { "outSize": { "type": "float2", "value": [ [ - 4096.0, - 4096.0 + 3072.0, + 3072.0 ] ] }, "fileTextureName": { "type": "string", - "value": "Z:/PFE2019/OPALE/03_WORK/01_ASSET_3D/03_PROPS/BATIMENT_PAUVRE_01/01_FAB/04_LOOKDEV/MAYA/sourceimages/Facade_Texture_build_02.jpg" - }, - "outSizeX": { - "type": "float", - "value": 4096.0 - }, - "repeatUV": { - "type": "float2", - "value": [ - [ - 10.0, - 10.0 - ] - ] + "value": "C:/Users/etudiant/Documents/clarrisse_alshader_tests/TEST_RENDU_CLARISSE/sourceimages/Concrete21/3K/Concrete21_COL_VAR2_3K.jpg" }, "outSizeY": { "type": "float", - "value": 4096.0 - }, - "repeatU": { - "type": "float", - "value": 10.0 - }, - "repeatV": { - "type": "float", - "value": 10.0 - }, - "computedFileTextureNamePattern": { - "type": "string", - "value": "Z:/PFE2019/OPALE/03_WORK/01_ASSET_3D/03_PROPS/BATIMENT_PAUVRE_01/01_FAB/04_LOOKDEV/MAYA/sourceimages/Facade_Texture_build_02.jpg" - } - }, - "type": "file" - }, - "place2dTexture37": { - "data": { - "repeatUV": { - "type": "float2", - "value": [ - [ - 10.0, - 10.0 - ] - ] - }, - "repeatU": { - "type": "float", - "value": 10.0 - }, - "repeatV": { - "type": "float", - "value": 10.0 - } - }, - "type": "place2dTexture" - }, - "place2dTexture36": { - "data": { - "repeatUV": { - "type": "float2", - "value": [ - [ - 10.0, - 10.0 - ] - ] - }, - "repeatU": { - "type": "float", - "value": 10.0 - }, - "repeatV": { - "type": "float", - "value": 10.0 - } - }, - "type": "place2dTexture" - }, - "place2dTexture39": { - "data": {}, - "type": "place2dTexture" - }, - "place2dTexture38": { - "data": { - "repeatUV": { - "type": "float2", - "value": [ - [ - 10.0, - 10.0 - ] - ] - }, - "repeatU": { - "type": "float", - "value": 10.0 - }, - "repeatV": { - "type": "float", - "value": 10.0 - } - }, - "type": "place2dTexture" - }, - "noise1": { - "data": { - "outColorB": { - "type": "float", - "value": 0.3273002505302429 - }, - "outAlpha": { - "type": "float", - "value": 0.3273002505302429 - }, - "ratio": { - "type": "float", - "value": 1.0 - }, - "outColorG": { - "type": "float", - "value": 0.3273002505302429 - }, - "outColorR": { - "type": "float", - "value": 0.3273002505302429 - }, - "outColor": { - "type": "float3", - "value": [ - [ - 0.3273002505302429, - 0.3273002505302429, - 0.3273002505302429 - ] - ] - }, - "frequency": { - "type": "float", - "value": 9.790209770202637 - }, - "time": { - "type": "float", - "value": 0.7832167744636536 - }, - "frequencyRatio": { - "type": "float", - "value": 7.167832374572754 - }, - "depthMax": { - "type": "short", - "value": 2 - }, - "noiseType": { - "type": "enum", - "value": 0 - } - }, - "type": "noise" - }, - "noise2": { - "data": { - "outColorB": { - "type": "float", - "value": 0.331360399723053 - }, - "outAlpha": { - "type": "float", - "value": 0.331360399723053 - }, - "ratio": { - "type": "float", - "value": 0.6713286638259888 - }, - "outColorG": { - "type": "float", - "value": 0.331360399723053 - }, - "falloff": { - "type": "enum", - "value": 1 - }, - "sizeRand": { - "type": "float", - "value": 0.7202796936035156 - }, - "outColorR": { - "type": "float", - "value": 0.331360399723053 - }, - "outColor": { - "type": "float3", - "value": [ - [ - 0.331360399723053, - 0.331360399723053, - 0.331360399723053 - ] - ] - }, - "spottyness": { - "type": "float", - "value": 0.251748263835907 - }, - "frequency": { - "type": "float", - "value": 20.979021072387695 - }, - "time": { - "type": "float", - "value": 0.9440559148788452 - }, - "frequencyRatio": { - "type": "float", - "value": 2.069930076599121 - }, - "depthMax": { - "type": "short", - "value": 8 - } - }, - "type": "noise" - }, - "Facade_Texture_build_Clear_1": { - "data": { - "outSize": { - "type": "float2", - "value": [ - [ - 4096.0, - 4096.0 - ] - ] - }, - "fileTextureName": { - "type": "string", - "value": "Z:/PFE2019/OPALE/03_WORK/01_ASSET_3D/03_PROPS/BATIMENT_PAUVRE_01/01_FAB/04_LOOKDEV/MAYA/sourceimages/Facade_Texture_build_Clear.jpg" + "value": 3072.0 }, "outSizeX": { "type": "float", - "value": 4096.0 - }, - "repeatUV": { - "type": "float2", - "value": [ - [ - 10.0, - 10.0 - ] - ] - }, - "outSizeY": { - "type": "float", - "value": 4096.0 - }, - "repeatU": { - "type": "float", - "value": 10.0 - }, - "repeatV": { - "type": "float", - "value": 10.0 - }, - "computedFileTextureNamePattern": { - "type": "string", - "value": "Z:/PFE2019/OPALE/03_WORK/01_ASSET_3D/03_PROPS/BATIMENT_PAUVRE_01/01_FAB/04_LOOKDEV/MAYA/sourceimages/Facade_Texture_build_Clear.jpg" - } - }, - "type": "file" - }, - "Brick_Facade_STL_Grey_02_1": { - "data": { - "alphaIsLuminance": { - "type": "bool", - "value": true - }, - "fileTextureName": { - "type": "string", - "value": "Z:/PFE2019/OPALE/03_WORK/01_ASSET_3D/03_PROPS/BATIMENT_PAUVRE_01/01_FAB/04_LOOKDEV/MAYA//sourceimages/Brick_Facade_STL_Grey_02.png" - }, - "colorSpace": { - "type": "string", - "value": "Raw" - }, - "repeatUV": { - "type": "float2", - "value": [ - [ - 10.0, - 10.0 - ] - ] - }, - "repeatU": { - "type": "float", - "value": 10.0 - }, - "repeatV": { - "type": "float", - "value": 10.0 + "value": 3072.0 }, "computedFileTextureNamePattern": { "type": "string", - "value": "Z:/PFE2019/OPALE/03_WORK/01_ASSET_3D/03_PROPS/BATIMENT_PAUVRE_01/01_FAB/04_LOOKDEV/MAYA//sourceimages/Brick_Facade_STL_Grey_02.png" - } - }, - "type": "file" - }, - "blendColors7": { - "data": { - "outputR": { - "type": "float", - "value": 0.0 - }, - "color1": { - "type": "float3", - "value": [ - [ - 0.0, - 0.0, - 0.0 - ] - ] - }, - "color2": { - "type": "float3", - "value": [ - [ - 0.0, - 0.0, - 0.0 - ] - ] - }, - "color1R": { - "type": "float", - "value": 0.0 - }, - "outputB": { - "type": "float", - "value": 0.0 - }, - "output": { - "type": "float3", - "value": [ - [ - 0.0, - 0.0, - 0.0 - ] - ] - }, - "color2B": { - "type": "float", - "value": 0.0 - }, - "blender": { - "type": "float", - "value": 0.0 + "value": "C:/Users/etudiant/Documents/clarrisse_alshader_tests/TEST_RENDU_CLARISSE/sourceimages/Concrete21/3K/Concrete21_COL_VAR2_3K.jpg" } }, - "type": "blendColors" + "type": "file" }, - "blendColors6": { + "bump2d1": { "data": { - "outputR": { - "type": "float", - "value": 0.0 - }, - "color1": { + "vertexCameraOne": { "type": "float3", "value": [ [ 0.0, - 0.0, + 1.9999999494757503e-05, 0.0 ] ] }, - "color2": { - "type": "float3", - "value": [ - [ - 0.0, - 0.0, - 0.0 - ] - ] + "bumpInterp": { + "type": "enum", + "value": 1 }, - "color1R": { + "bumpValue": { "type": "float", - "value": 0.0 + "value": 1.0 + }, + "infoBits": { + "type": "long", + "value": 3 }, - "outputB": { + "vertexCameraOneY": { "type": "float", - "value": 0.0 + "value": 1.9999999494757503e-05 }, - "output": { - "type": "float3", + "uvCoord": { + "type": "float2", "value": [ [ 0.0, - 0.0, - 0.0 + 2.9999999242136255e-05 ] ] }, - "color2B": { - "type": "float", - "value": 0.0 - }, - "blender": { + "vCoord": { "type": "float", - "value": 0.6352623105049133 + "value": 2.9999999242136255e-05 } }, - "type": "blendColors" + "type": "bump2d" + }, + "place2dTexture3": { + "data": {}, + "type": "place2dTexture" + }, + "place2dTexture2": { + "data": {}, + "type": "place2dTexture" + }, + "place2dTexture1": { + "data": {}, + "type": "place2dTexture" }, - "blendColors5": { + "CONCRETE": { "data": { - "outputR": { + "outColorB": { "type": "float", "value": 0.0 }, - "color1": { + "normalCamera": { "type": "float3", "value": [ [ 0.0, 0.0, - 0.0 + 1.0 ] ] }, - "color2": { + "baseColor": { "type": "float3", "value": [ [ @@ -8728,113 +1145,58 @@ ] ] }, - "color1R": { + "outColorG": { "type": "float", "value": 0.0 }, - "outputB": { + "normalCameraX": { "type": "float", "value": 0.0 }, - "output": { - "type": "float3", - "value": [ - [ - 0.0, - 0.0, - 0.0 - ] - ] - }, - "color2B": { + "specularRoughness": { "type": "float", "value": 0.0 }, - "blender": { - "type": "float", - "value": 0.6352623105049133 - } - }, - "type": "blendColors" - }, - "blendColors2": { - "data": { - "color1G": { - "type": "float", - "value": 0.3273002505302429 - }, - "color1B": { - "type": "float", - "value": 0.3273002505302429 - }, - "outputR": { - "type": "float", - "value": 0.4876904785633087 - }, - "color2R": { + "baseColorR": { "type": "float", - "value": 0.6480807065963745 - }, - "color1": { - "type": "float3", - "value": [ - [ - 0.3273002505302429, - 0.3273002505302429, - 0.3273002505302429 - ] - ] - }, - "color2": { - "type": "float3", - "value": [ - [ - 0.6480807065963745, - 0.6480807065963745, - 0.6480807065963745 - ] - ] + "value": 0.0 }, - "color1R": { + "normalCameraY": { "type": "float", - "value": 0.3273002505302429 + "value": 0.0 }, - "outputB": { + "outColorR": { "type": "float", - "value": 0.4876904785633087 + "value": 0.0 }, - "output": { + "outColor": { "type": "float3", "value": [ [ - 0.4876904785633087, - 0.4876904785633087, - 0.4876904785633087 + 0.0, + 0.0, + 0.0 ] ] }, - "color2B": { + "base": { "type": "float", - "value": 0.6480807065963745 + "value": 1.0 }, - "outputG": { + "baseColorG": { "type": "float", - "value": 0.4876904785633087 + "value": 0.0 }, - "color2G": { + "baseColorB": { "type": "float", - "value": 0.6480807065963745 + "value": 0.0 } }, - "type": "blendColors" + "type": "aiStandardSurface" }, - "remapHsv1": { + "remapColor1": { "data": { - "outColorB": { - "type": "float", - "value": 0.22499999403953552 - }, - "hue": { + "blue": { "type": "TdataCompound", "value": [ [ @@ -8846,31 +1208,30 @@ 1.0, 1.0, 1.0 - ] - ] - }, - "saturation": { - "type": "TdataCompound", - "value": [ + ], [ - 0.0, - 0.0, + 0.22608695924282074, + 0.8399999737739563, 1.0 ], [ - 1.0, - 1.0, + 0.5043478012084961, + 0.23999999463558197, 1.0 ] ] }, + "outColorB": { + "type": "float", + "value": 0.0 + }, "colorB": { "type": "float", "value": 0.0 }, "outColorG": { "type": "float", - "value": 0.22499999403953552 + "value": 0.0 }, "colorG": { "type": "float", @@ -8886,182 +1247,118 @@ ] ] }, - "value": { - "type": "TdataCompound", - "value": [ - [ - 0.0, - 0.22499999403953552, - 1.0 - ], - [ - 1.0, - 1.0, - 1.0 - ] - ] - }, "outColorR": { "type": "float", - "value": 0.22499999403953552 + "value": 0.0 }, "outColor": { "type": "float3", "value": [ [ - 0.22499999403953552, - 0.22499999403953552, - 0.22499999403953552 + 0.0, + 0.0, + 0.0 ] ] }, "colorR": { "type": "float", "value": 0.0 - } - }, - "type": "remapHsv" - }, - "Facade_Texture_build_Clear_STL_02_1": { - "data": { - "alphaIsLuminance": { - "type": "bool", - "value": true - }, - "fileTextureName": { - "type": "string", - "value": "Z:/PFE2019/OPALE/03_WORK/01_ASSET_3D/03_PROPS/BATIMENT_PAUVRE_01/01_FAB/04_LOOKDEV/MAYA//sourceimages/Facade_Texture_build_Clear_STL_02.png" - }, - "colorSpace": { - "type": "string", - "value": "Raw" }, - "repeatUV": { - "type": "float2", + "green": { + "type": "TdataCompound", "value": [ [ - 10.0, - 10.0 - ] - ] - }, - "repeatU": { - "type": "float", - "value": 10.0 - }, - "repeatV": { - "type": "float", - "value": 10.0 - }, - "computedFileTextureNamePattern": { - "type": "string", - "value": "Z:/PFE2019/OPALE/03_WORK/01_ASSET_3D/03_PROPS/BATIMENT_PAUVRE_01/01_FAB/04_LOOKDEV/MAYA//sourceimages/Facade_Texture_build_Clear_STL_02.png" - } - }, - "type": "file" - }, - "Facade_Texture_build_Clear_02_1": { - "data": { - "outSize": { - "type": "float2", - "value": [ + 0.0, + 0.0, + 1.0 + ], + [ + 1.0, + 1.0, + 1.0 + ], + [ + 0.8695651888847351, + 0.20000000298023224, + 1.0 + ], + [ + 0.20000000298023224, + 0.7200000286102295, + 1.0 + ], + [ + 0.3478260934352875, + 0.20000000298023224, + 1.0 + ], [ - 4096.0, - 4096.0 + 0.643478274345398, + 0.7400000095367432, + 1.0 ] ] }, - "fileTextureName": { - "type": "string", - "value": "Z:/PFE2019/OPALE/03_WORK/01_ASSET_3D/03_PROPS/BATIMENT_PAUVRE_01/01_FAB/04_LOOKDEV/MAYA/sourceimages/Facade_Texture_build_Clear_02.jpg" - }, - "outSizeX": { - "type": "float", - "value": 4096.0 - }, - "repeatUV": { - "type": "float2", + "red": { + "type": "TdataCompound", "value": [ [ - 10.0, - 10.0 + 0.0, + 0.0, + 1.0 + ], + [ + 1.0, + 1.0, + 1.0 + ], + [ + 0.20000000298023224, + 0.800000011920929, + 1.0 ] ] - }, - "outSizeY": { - "type": "float", - "value": 4096.0 - }, - "repeatU": { - "type": "float", - "value": 10.0 - }, - "repeatV": { - "type": "float", - "value": 10.0 - }, - "computedFileTextureNamePattern": { - "type": "string", - "value": "Z:/PFE2019/OPALE/03_WORK/01_ASSET_3D/03_PROPS/BATIMENT_PAUVRE_01/01_FAB/04_LOOKDEV/MAYA/sourceimages/Facade_Texture_build_Clear_02.jpg" } }, - "type": "file" + "type": "remapColor" }, - "blendColors8": { + "reverse1": { "data": { - "outputR": { - "type": "float", - "value": 1.0 - }, - "color2R": { - "type": "float", - "value": 1.0 - }, - "color1": { - "type": "float3", - "value": [ - [ - 0.0, - 0.0, - 0.0 - ] - ] - }, - "color2": { + "input": { "type": "float3", "value": [ [ 1.0, 0.0, - 1.0 + 0.0 ] ] }, - "color1R": { + "inputX": { "type": "float", - "value": 0.0 + "value": 1.0 }, - "outputB": { + "outputX": { "type": "float", - "value": 1.0 + "value": 0.0 }, "output": { "type": "float3", "value": [ [ - 1.0, 0.0, + 1.0, 1.0 ] ] - }, - "blender": { - "type": "float", - "value": 0.0 } }, - "type": "blendColors" + "type": "reverse" } - } + }, + "objects": [ + "pSphereShape1" + ] } } \ No newline at end of file