This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"""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", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
class Color: | |
color_code = None | |
reset = '\033[0m' | |
_color_code_stack = [reset] | |
def __init__(self): |