missed one collection
This commit is contained in:
parent
94f542912b
commit
0a9a76e46d
@ -196,7 +196,7 @@ public class ShaderGenerationInfo implements Savable, Cloneable {
|
|||||||
clone.fragmentUniforms = new ArrayList<>();
|
clone.fragmentUniforms = new ArrayList<>();
|
||||||
clone.fragmentGlobals = new ArrayList<>();
|
clone.fragmentGlobals = new ArrayList<>();
|
||||||
clone.unusedNodes = new ArrayList<>();
|
clone.unusedNodes = new ArrayList<>();
|
||||||
|
clone.varyings = new ArrayList<>();
|
||||||
|
|
||||||
for (ShaderNodeVariable attribute : attributes) {
|
for (ShaderNodeVariable attribute : attributes) {
|
||||||
clone.attributes.add(attribute.clone());
|
clone.attributes.add(attribute.clone());
|
||||||
@ -208,7 +208,6 @@ public class ShaderGenerationInfo implements Savable, Cloneable {
|
|||||||
|
|
||||||
clone.vertexGlobal = vertexGlobal.clone();
|
clone.vertexGlobal = vertexGlobal.clone();
|
||||||
|
|
||||||
|
|
||||||
for (ShaderNodeVariable varying : varyings) {
|
for (ShaderNodeVariable varying : varyings) {
|
||||||
clone.varyings.add(varying.clone());
|
clone.varyings.add(varying.clone());
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user