Skip to content

Commit 2a9c545

Browse files
committed
fix: generic node types no longer warned about when trying to apply settings
1 parent 38553b5 commit 2a9c545

File tree

3 files changed

+26
-4
lines changed

3 files changed

+26
-4
lines changed

compositor/node_settings.py

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -414,7 +414,7 @@
414414
("offset_y", ST.FLOAT),
415415
("space", ST.ENUM)],
416416

417-
'CompositorNodeStablize' : [("clip", ST.MOVIE_CLIP),
417+
'CompositorNodeStabilize' : [("clip", ST.MOVIE_CLIP),
418418
("filter_type", ST.ENUM),
419419
("invert", ST.BOOL)],
420420

@@ -425,5 +425,12 @@
425425

426426

427427
# LAYOUT
428-
'CompositorNodeSwitch' : [("check", ST.BOOL)]
428+
'CompositorNodeSwitch' : [("check", ST.BOOL)],
429+
430+
431+
# MISC
432+
'NodeFrame' : [],
433+
'NodeGroupInput' : [],
434+
'NodeGroupOutput' : [],
435+
'NodeReroute' : []
429436
}

geometry/node_settings.py

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -494,5 +494,12 @@
494494
("pivot_axis", ST.ENUM)],
495495

496496
'FunctionNodeRotateEuler' : [("space", ST.ENUM),
497-
("type", ST.ENUM)]
497+
("type", ST.ENUM)],
498+
499+
# MISC
500+
'NodeFrame' : [],
501+
'NodeGroupInput' : [],
502+
'NodeGroupOutput' : [],
503+
'NodeReroute' : []
504+
498505
}

material/node_settings.py

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,6 +215,8 @@
215215

216216
'ShaderNodeMapping' : [("vector_type", ST.ENUM)],
217217

218+
'ShaderNodeNormal' : [],
219+
218220
'ShaderNodeNormalMap' : [("space", ST.ENUM),
219221
("uv_map", ST.STRING)], #TODO
220222

@@ -269,5 +271,11 @@
269271
("filepath", ST.STRING),
270272
("mode", ST.ENUM),
271273
("script", ST.TEXT),
272-
("use_auto_update", ST.BOOL)]
274+
("use_auto_update", ST.BOOL)],
275+
276+
# MISC
277+
'NodeFrame' : [],
278+
'NodeGroupInput' : [],
279+
'NodeGroupOutput' : [],
280+
'NodeReroute' : []
273281
}

0 commit comments

Comments
 (0)