Skip to content

Commit 29b03e5

Browse files
committed
Merge branch 'develop'
2 parents efaa6ac + b1ed132 commit 29b03e5

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

infinigen/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import logging
77
from pathlib import Path
88

9-
__version__ = "1.15.2"
9+
__version__ = "1.15.3"
1010

1111

1212
def repo_root():

infinigen/assets/materials/dev/face_size_visualizer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def geo_face_colors(nw: NodeWrangler):
3434
random_value = nw.new_node(Nodes.RandomValue, attrs={"data_type": "FLOAT"})
3535

3636
combine = nw.new_node(
37-
Nodes.CombineColor,
37+
Nodes.FunctionCombineColor,
3838
input_kwargs={
3939
0: random_value.outputs["Value"],
4040
1: 1.0,

infinigen/core/nodes/node_info.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,8 @@ class Nodes:
4040
SeparateColor = "ShaderNodeSeparateColor"
4141
CompSeparateColor = "CompositorNodeSeparateColor"
4242
CombineRGB = "ShaderNodeCombineRGB"
43-
CombineColor = "FunctionNodeCombineColor"
43+
CombineColor = "ShaderNodeCombineColor"
44+
FunctionCombineColor = "FunctionNodeCombineColor"
4445
CompCombineColor = "CompositorNodeCombineColor"
4546

4647
# bl3.5 additions

0 commit comments

Comments
 (0)