├── .editorconfig ├── .flake8 ├── .github └── FUNDING.yml ├── .gitignore ├── .pylintrc ├── .vscode └── settings.json ├── README.md ├── __init__.py ├── blender_manifest.toml ├── constants.py ├── functions.py ├── operators.py ├── preferences.py └── ui.py /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oRazeD/VertexColorsPlus/HEAD/.editorconfig -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oRazeD/VertexColorsPlus/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oRazeD/VertexColorsPlus/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | __pycache__/ 3 | 4 | promotional_material/ 5 | -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oRazeD/VertexColorsPlus/HEAD/.pylintrc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oRazeD/VertexColorsPlus/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oRazeD/VertexColorsPlus/HEAD/__init__.py -------------------------------------------------------------------------------- /blender_manifest.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oRazeD/VertexColorsPlus/HEAD/blender_manifest.toml -------------------------------------------------------------------------------- /constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oRazeD/VertexColorsPlus/HEAD/constants.py -------------------------------------------------------------------------------- /functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oRazeD/VertexColorsPlus/HEAD/functions.py -------------------------------------------------------------------------------- /operators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oRazeD/VertexColorsPlus/HEAD/operators.py -------------------------------------------------------------------------------- /preferences.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oRazeD/VertexColorsPlus/HEAD/preferences.py -------------------------------------------------------------------------------- /ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oRazeD/VertexColorsPlus/HEAD/ui.py --------------------------------------------------------------------------------