Geometry Nodes: muting zone input and output nodes is not allowed
This commit is contained in:
@@ -79,6 +79,7 @@ static void node_register()
|
||||
ntype.declare = node_declare;
|
||||
ntype.gather_link_search_ops = nullptr;
|
||||
ntype.insert_link = node_insert_link;
|
||||
ntype.no_muting = true;
|
||||
node_type_storage(
|
||||
&ntype, "NodeGeometryRepeatInput", node_free_standard_storage, node_copy_standard_storage);
|
||||
nodeRegisterType(&ntype);
|
||||
|
||||
@@ -90,6 +90,7 @@ static void node_register()
|
||||
ntype.initfunc = node_init;
|
||||
ntype.declare = node_declare;
|
||||
ntype.insert_link = node_insert_link;
|
||||
ntype.no_muting = true;
|
||||
node_type_storage(&ntype, "NodeGeometryRepeatOutput", node_free_storage, node_copy_storage);
|
||||
nodeRegisterType(&ntype);
|
||||
}
|
||||
|
||||
@@ -241,6 +241,7 @@ static void node_register()
|
||||
ntype.declare = node_declare;
|
||||
ntype.insert_link = node_insert_link;
|
||||
ntype.gather_link_search_ops = nullptr;
|
||||
ntype.no_muting = true;
|
||||
node_type_storage(&ntype,
|
||||
"NodeGeometrySimulationInput",
|
||||
node_free_standard_storage,
|
||||
|
||||
@@ -883,6 +883,7 @@ static void node_register()
|
||||
ntype.gather_link_search_ops = nullptr;
|
||||
ntype.insert_link = node_insert_link;
|
||||
ntype.draw_buttons_ex = node_layout_ex;
|
||||
ntype.no_muting = true;
|
||||
node_type_storage(&ntype, "NodeGeometrySimulationOutput", node_free_storage, node_copy_storage);
|
||||
nodeRegisterType(&ntype);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user