Skip to content

Instantly share code, notes, and snippets.

View vankessel's full-sized avatar
👨‍💻
Arranging 1s and 0s

Kara van Kessel vankessel

👨‍💻
Arranging 1s and 0s
View GitHub Profile
@vankessel
vankessel / select_similar_nodes.py
Created March 10, 2025 23:49
Select Similar Nodes (Blender addon script)
"""Blender add-on that selects all nodes in the current node editor view of the same type as the active node.
Default shortcut is Shift Ctrl Q.
"""
import bpy
bl_info = {
"name": "Select Similar Nodes",
"author": "Kara van Kessel",
"description": "Select nodes of the same type as the active node",
#!/usr/bin/env python3
class Color:
color_code = None
reset = '\033[0m'
_color_code_stack = [reset]
def __init__(self):