From bcf9fca0e07bbf04fbf32a80fc9969c2fd6cb1c6 Mon Sep 17 00:00:00 2001 From: luboslenco Date: Wed, 15 Oct 2025 18:49:02 +0200 Subject: [PATCH] Cleanup --- paint/sources/nodes_material.ts | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/paint/sources/nodes_material.ts b/paint/sources/nodes_material.ts index 6fdef351..8ad63da7 100644 --- a/paint/sources/nodes_material.ts +++ b/paint/sources/nodes_material.ts @@ -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 ]; }