diff --git a/node_wrangler/interface.py b/node_wrangler/interface.py index f2ac3e8da..e28e947a7 100644 --- a/node_wrangler/interface.py +++ b/node_wrangler/interface.py @@ -361,7 +361,8 @@ class NWAttributeMenu(bpy.types.Menu): for obj in objs: if obj.data.attributes: for attr in obj.data.attributes: - attrs.append(attr.name) + if not attr.is_internal: + attrs.append(attr.name) attrs = list(set(attrs)) # get a unique list if attrs: