Mirror of ayon core so that FrameWork can fork it.
Find a file
Roy Nieterau 7711938d36 By default exclude parent hierarchy for pointcaches (PLN-205)
- This adds in a toggle to export alembics without the parent hierarchy
2018-12-13 14:12:22 +01:00
colorbleed By default exclude parent hierarchy for pointcaches (PLN-205) 2018-12-13 14:12:22 +01:00
res PLN-198: Add quick icons for Loader/Manager in toolbox in Maya (draft) 2018-11-12 23:37:13 +01:00
setup/fusion/scripts/Comp/colorbleed Removed update version check, updated switch call 2018-03-12 17:15:00 +01:00
.gitignore Initial Colorbleed config for Avalon 2017-06-23 15:35:00 +02:00
README.md Add README.md 2017-06-23 15:59:53 +02:00

The Colorbleed animation studio config for Avalon


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 for details.
  • Etiquette: Semantic Versioning
  • 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.