Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/danbradham/colorizer
Maya Color Palette
https://github.com/danbradham/colorizer
Last synced: 15 days ago
JSON representation
Maya Color Palette
- Host: GitHub
- URL: https://github.com/danbradham/colorizer
- Owner: danbradham
- License: mit
- Created: 2020-03-17T18:59:46.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2021-12-11T14:33:58.000Z (about 3 years ago)
- Last Synced: 2024-11-07T08:51:02.251Z (2 months ago)
- Language: Python
- Size: 47.9 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# colorizer
Easily set outliner and wireframe color in Autodesk Maya.![Alt text](preview.png?raw=true "Title")
# api
Set outliner color for selection:
```python
import colorizer
colorizer.set_outliner_color('red')
colorizer.set_outliner_color(1.0, 0.0, 0.0)
```Set wireframe color for selection:
```python
colorizer.set_wireframe_color('green')
colorizer.set_wireframe_color(0.0, 1.0, 0.0)
```Set both wireframe and outliner color:
```python
colorizer.set_color('blue')
colorizer.set_color(0.0, 0.0, 1.0)
```Show the Colorizer dialog:
```python
colorizer.ui.show()
```Available named colors, chosen to be cohesive with the default Maya color theme:
- red
- peach
- yellow
- green
- teal
- blue
- purple
- pink
- white
- black