This commit is contained in:
luboslenco
2025-10-15 18:49:02 +02:00
parent d9e88594c7
commit bcf9fca0e0
+7 -2
View File
@@ -1,5 +1,9 @@
let nodes_material_categories: string[] = [ _tr("Input"), _tr("Texture"), _tr("Color"), _tr("Vector"), _tr("Converter"), _tr("Neural"), _tr("Group") ];
let nodes_material_categories: string[] = [
_tr("Input"), _tr("Texture"), _tr("Color"), _tr("Vector"), _tr("Converter"),
// _tr("Neural"),
_tr("Group")
];
let nodes_material_input: ui_node_t[];
let nodes_material_texture: ui_node_t[];
@@ -96,7 +100,8 @@ function nodes_material_init() {
group_node_init();
nodes_material_list = [
nodes_material_input, nodes_material_texture, nodes_material_color, nodes_material_vector, nodes_material_converter, nodes_material_neural,
nodes_material_input, nodes_material_texture, nodes_material_color, nodes_material_vector, nodes_material_converter,
// nodes_material_neural,
nodes_material_group
];
}