missed one collection

This commit is contained in:
javasabr 2017-09-04 18:04:46 +03:00
parent 94f542912b
commit 0a9a76e46d

View File

@ -196,7 +196,7 @@ public class ShaderGenerationInfo implements Savable, Cloneable {
clone.fragmentUniforms = new ArrayList<>();
clone.fragmentGlobals = new ArrayList<>();
clone.unusedNodes = new ArrayList<>();
clone.varyings = new ArrayList<>();
for (ShaderNodeVariable attribute : attributes) {
clone.attributes.add(attribute.clone());
@ -208,7 +208,6 @@ public class ShaderGenerationInfo implements Savable, Cloneable {
clone.vertexGlobal = vertexGlobal.clone();
for (ShaderNodeVariable varying : varyings) {
clone.varyings.add(varying.clone());
}