File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 6
6
import logging
7
7
from pathlib import Path
8
8
9
- __version__ = "1.15.2 "
9
+ __version__ = "1.15.3 "
10
10
11
11
12
12
def repo_root ():
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ def geo_face_colors(nw: NodeWrangler):
34
34
random_value = nw .new_node (Nodes .RandomValue , attrs = {"data_type" : "FLOAT" })
35
35
36
36
combine = nw .new_node (
37
- Nodes .CombineColor ,
37
+ Nodes .FunctionCombineColor ,
38
38
input_kwargs = {
39
39
0 : random_value .outputs ["Value" ],
40
40
1 : 1.0 ,
Original file line number Diff line number Diff line change @@ -40,7 +40,8 @@ class Nodes:
40
40
SeparateColor = "ShaderNodeSeparateColor"
41
41
CompSeparateColor = "CompositorNodeSeparateColor"
42
42
CombineRGB = "ShaderNodeCombineRGB"
43
- CombineColor = "FunctionNodeCombineColor"
43
+ CombineColor = "ShaderNodeCombineColor"
44
+ FunctionCombineColor = "FunctionNodeCombineColor"
44
45
CompCombineColor = "CompositorNodeCombineColor"
45
46
46
47
# bl3.5 additions
You can’t perform that action at this time.
0 commit comments