Skip to content

Instantly share code, notes, and snippets.

View rtryan98's full-sized avatar

Robert Ryan rtryan98

View GitHub Profile
@dnnkeeper
dnnkeeper / LinkSimilarMeshes.py
Last active June 24, 2026 16:45
Blender plugin for finding similar meshes and linking their data. Select->Similar Objects. N->Tools
import bpy
from concurrent.futures import ThreadPoolExecutor
bl_info = {
"name": "Link Similar Meshes",
"blender": (2, 80, 0),
"category": "Object",
"version": (1, 0, 1),
"author": "dnnkeeper",
"description": "Finds similar meshes in a scene and links their data",
@QuantumCD
QuantumCD / Qt 5 Dark Fusion Palette
Created August 15, 2013 21:40
This is a complete (I think) dark color palette for the Qt 5 Fusion theme, as well as a nice style sheet for the tool tips that make them blend better with the rest of the theme. To have immediate effect, be sure to put this in your main function before showing the parent window. Child windows should automatically inherit the palette unless you …
qApp->setStyle(QStyleFactory::create("Fusion"));
QPalette darkPalette;
darkPalette.setColor(QPalette::Window, QColor(53,53,53));
darkPalette.setColor(QPalette::WindowText, Qt::white);
darkPalette.setColor(QPalette::Base, QColor(25,25,25));
darkPalette.setColor(QPalette::AlternateBase, QColor(53,53,53));
darkPalette.setColor(QPalette::ToolTipBase, Qt::white);
darkPalette.setColor(QPalette::ToolTipText, Qt::white);
darkPalette.setColor(QPalette::Text, Qt::white);