├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── __init__.py ├── auto_rename.py ├── clean_gp_slots.py ├── clean_slots.py ├── colornames.json ├── fn.py ├── set_color.py └── ui.py /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | *.py[cod] -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pullusb/autoMaterial/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pullusb/autoMaterial/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pullusb/autoMaterial/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pullusb/autoMaterial/HEAD/__init__.py -------------------------------------------------------------------------------- /auto_rename.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pullusb/autoMaterial/HEAD/auto_rename.py -------------------------------------------------------------------------------- /clean_gp_slots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pullusb/autoMaterial/HEAD/clean_gp_slots.py -------------------------------------------------------------------------------- /clean_slots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pullusb/autoMaterial/HEAD/clean_slots.py -------------------------------------------------------------------------------- /colornames.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pullusb/autoMaterial/HEAD/colornames.json -------------------------------------------------------------------------------- /fn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pullusb/autoMaterial/HEAD/fn.py -------------------------------------------------------------------------------- /set_color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pullusb/autoMaterial/HEAD/set_color.py -------------------------------------------------------------------------------- /ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pullusb/autoMaterial/HEAD/ui.py --------------------------------------------------------------------------------