https://github.com/colorbleed/colorbleed-config
Colorbleed Pipeline configuration for Avalon
https://github.com/colorbleed/colorbleed-config
avalon maya pipeline
Last synced: 11 months ago
JSON representation
Colorbleed Pipeline configuration for Avalon
- Host: GitHub
- URL: https://github.com/colorbleed/colorbleed-config
- Owner: Colorbleed
- Created: 2017-09-28T14:04:00.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2021-12-16T14:43:06.000Z (about 4 years ago)
- Last Synced: 2025-04-12T23:35:21.873Z (11 months ago)
- Topics: avalon, maya, pipeline
- Language: Python
- Size: 2.2 MB
- Stars: 17
- Watchers: 5
- Forks: 12
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
The [Colorbleed](http://www.colorbleed.nl/) animation studio *config* for [Avalon](https://getavalon.github.io/)
_This configuration is used for animation in film and advertising._
### Code convention
Below are some of the standard practices applied to this repositories.
- **Etiquette: PEP8**
- All code is written in PEP8. It is recommended you use a linter as you work, flake8 and pylinter are both good options.
- **Etiquette: Napoleon docstrings**
- Any docstrings are made in Google Napoleon format. See [Napoleon](https://sphinxcontrib-napoleon.readthedocs.io/en/latest/example_google.html) for details.
- **Etiquette: Semantic Versioning**
- This project follows [semantic versioning](http://semver.org).
- **Etiquette: Underscore means private**
- Anything prefixed with an underscore means that it is internal to wherever it is used. For example, a variable name is only ever used in the parent function or class. A module is not for use by the end-user. In contrast, anything without an underscore is public, but not necessarily part of the API. Members of the API resides in `api.py`.
- **API: Idempotence**
- A public function must be able to be called twice and produce the exact same result. This means no changing of state without restoring previous state when finishing. For example, if a function requires changing the current selection in Autodesk Maya, it must restore the previous selection prior to completing.