├── .github ├── ISSUE_TEMPLATE │ └── bug_report.md └── pull_request_template.md ├── .gitignore ├── CMakeLists.txt ├── LICENSE-THIRD-PARTY.md ├── LICENSE.md ├── README.md ├── _config.yml ├── configs ├── channels.yaml ├── channels │ ├── channels.yaml │ ├── facility.yaml │ ├── openexr.yaml │ └── topology.yaml ├── layers.yaml └── layers │ ├── _deprecated │ └── arnold4.yaml │ ├── arnold5.yaml │ ├── facility.yaml │ ├── layers.yaml │ └── nuke.yaml ├── docker └── linux │ └── Dockerfile ├── documentation ├── CMakeLists.txt ├── docs │ ├── FlattenLayerSet.md │ ├── GradeBeauty.md │ ├── GradeBeautyLayer.md │ ├── GradeBeautyLayerSet.md │ ├── GradeLayerSet.md │ ├── MultiplyLayerSet.md │ ├── RemoveLayerSet.md │ ├── about.md │ ├── configs_and_topology.md │ ├── core.md │ ├── dev_guide.md │ ├── index.md │ ├── media │ │ ├── layer_alchemy_200px.png │ │ └── parameters │ │ │ ├── FlattenLayerSet.png │ │ │ ├── GradeBeauty.png │ │ │ ├── GradeBeautyLayer.png │ │ │ ├── GradeBeautyLayerSet.png │ │ │ ├── GradeBeauty_uncollapsed.png │ │ │ ├── GradeLayerSet.png │ │ │ ├── MultiplyLayerSet.png │ │ │ └── RemoveLayerSet.png │ └── tools.md ├── mkdocs.yml └── theme │ └── slate │ ├── __init__.py │ ├── css │ ├── base.css │ └── bootstrap-custom.min.css │ └── mkdocs_theme.yml ├── icons ├── FlattenLayerSet.png ├── GradeBeauty.png ├── GradeBeautyLayer.png ├── GradeBeautyLayerSet.png ├── GradeLayerSet.png ├── MultiplyLayerSet.png ├── RemoveLayerSet.png ├── documentation.png ├── layer_alchemy.png └── layer_alchemy_200px.png ├── include ├── LayerSetConfig.h ├── LayerSetCore.h ├── LayerSetTypes.h ├── nuke │ ├── LayerSet.h │ └── LayerSetKnob.h └── version.h ├── python ├── layer_alchemy │ ├── __init__.py │ └── _config.py └── nuke │ ├── init.py │ ├── layer_alchemy │ ├── __init__.py │ ├── callbacks.py │ ├── constants.py │ ├── documentation.py │ └── utilities.py │ └── menu.py └── src ├── ConfigTester.cpp ├── LayerSetConfig.cpp ├── LayerSetCore.cpp ├── LayerTester.cpp └── nuke ├── CMakeLists.txt ├── FlattenLayerSet.cpp ├── GradeBeauty.cpp ├── GradeBeautyLayer.cpp ├── GradeBeautyLayerSet.cpp ├── GradeLayerSet.cpp ├── LayerSet.cpp ├── LayerSetKnob.cpp ├── MultiplyLayerSet.cpp └── RemoveLayerSet.cpp /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebjacob/LayerAlchemy/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebjacob/LayerAlchemy/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebjacob/LayerAlchemy/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebjacob/LayerAlchemy/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE-THIRD-PARTY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebjacob/LayerAlchemy/HEAD/LICENSE-THIRD-PARTY.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebjacob/LayerAlchemy/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebjacob/LayerAlchemy/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebjacob/LayerAlchemy/HEAD/_config.yml -------------------------------------------------------------------------------- /configs/channels.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebjacob/LayerAlchemy/HEAD/configs/channels.yaml -------------------------------------------------------------------------------- /configs/channels/channels.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebjacob/LayerAlchemy/HEAD/configs/channels/channels.yaml -------------------------------------------------------------------------------- /configs/channels/facility.yaml: -------------------------------------------------------------------------------- 1 | # you can add custom channels here 2 | -------------------------------------------------------------------------------- /configs/channels/openexr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebjacob/LayerAlchemy/HEAD/configs/channels/openexr.yaml -------------------------------------------------------------------------------- /configs/channels/topology.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebjacob/LayerAlchemy/HEAD/configs/channels/topology.yaml -------------------------------------------------------------------------------- /configs/layers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebjacob/LayerAlchemy/HEAD/configs/layers.yaml -------------------------------------------------------------------------------- /configs/layers/_deprecated/arnold4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebjacob/LayerAlchemy/HEAD/configs/layers/_deprecated/arnold4.yaml -------------------------------------------------------------------------------- /configs/layers/arnold5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebjacob/LayerAlchemy/HEAD/configs/layers/arnold5.yaml -------------------------------------------------------------------------------- /configs/layers/facility.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebjacob/LayerAlchemy/HEAD/configs/layers/facility.yaml -------------------------------------------------------------------------------- /configs/layers/layers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebjacob/LayerAlchemy/HEAD/configs/layers/layers.yaml -------------------------------------------------------------------------------- /configs/layers/nuke.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebjacob/LayerAlchemy/HEAD/configs/layers/nuke.yaml -------------------------------------------------------------------------------- /docker/linux/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebjacob/LayerAlchemy/HEAD/docker/linux/Dockerfile -------------------------------------------------------------------------------- /documentation/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebjacob/LayerAlchemy/HEAD/documentation/CMakeLists.txt -------------------------------------------------------------------------------- /documentation/docs/FlattenLayerSet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebjacob/LayerAlchemy/HEAD/documentation/docs/FlattenLayerSet.md -------------------------------------------------------------------------------- /documentation/docs/GradeBeauty.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebjacob/LayerAlchemy/HEAD/documentation/docs/GradeBeauty.md -------------------------------------------------------------------------------- /documentation/docs/GradeBeautyLayer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebjacob/LayerAlchemy/HEAD/documentation/docs/GradeBeautyLayer.md -------------------------------------------------------------------------------- /documentation/docs/GradeBeautyLayerSet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebjacob/LayerAlchemy/HEAD/documentation/docs/GradeBeautyLayerSet.md -------------------------------------------------------------------------------- /documentation/docs/GradeLayerSet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebjacob/LayerAlchemy/HEAD/documentation/docs/GradeLayerSet.md -------------------------------------------------------------------------------- /documentation/docs/MultiplyLayerSet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebjacob/LayerAlchemy/HEAD/documentation/docs/MultiplyLayerSet.md -------------------------------------------------------------------------------- /documentation/docs/RemoveLayerSet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebjacob/LayerAlchemy/HEAD/documentation/docs/RemoveLayerSet.md -------------------------------------------------------------------------------- /documentation/docs/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebjacob/LayerAlchemy/HEAD/documentation/docs/about.md -------------------------------------------------------------------------------- /documentation/docs/configs_and_topology.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebjacob/LayerAlchemy/HEAD/documentation/docs/configs_and_topology.md -------------------------------------------------------------------------------- /documentation/docs/core.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebjacob/LayerAlchemy/HEAD/documentation/docs/core.md -------------------------------------------------------------------------------- /documentation/docs/dev_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebjacob/LayerAlchemy/HEAD/documentation/docs/dev_guide.md -------------------------------------------------------------------------------- /documentation/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebjacob/LayerAlchemy/HEAD/documentation/docs/index.md -------------------------------------------------------------------------------- /documentation/docs/media/layer_alchemy_200px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebjacob/LayerAlchemy/HEAD/documentation/docs/media/layer_alchemy_200px.png -------------------------------------------------------------------------------- /documentation/docs/media/parameters/FlattenLayerSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebjacob/LayerAlchemy/HEAD/documentation/docs/media/parameters/FlattenLayerSet.png -------------------------------------------------------------------------------- /documentation/docs/media/parameters/GradeBeauty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebjacob/LayerAlchemy/HEAD/documentation/docs/media/parameters/GradeBeauty.png -------------------------------------------------------------------------------- /documentation/docs/media/parameters/GradeBeautyLayer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebjacob/LayerAlchemy/HEAD/documentation/docs/media/parameters/GradeBeautyLayer.png -------------------------------------------------------------------------------- /documentation/docs/media/parameters/GradeBeautyLayerSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebjacob/LayerAlchemy/HEAD/documentation/docs/media/parameters/GradeBeautyLayerSet.png -------------------------------------------------------------------------------- /documentation/docs/media/parameters/GradeBeauty_uncollapsed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebjacob/LayerAlchemy/HEAD/documentation/docs/media/parameters/GradeBeauty_uncollapsed.png -------------------------------------------------------------------------------- /documentation/docs/media/parameters/GradeLayerSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebjacob/LayerAlchemy/HEAD/documentation/docs/media/parameters/GradeLayerSet.png -------------------------------------------------------------------------------- /documentation/docs/media/parameters/MultiplyLayerSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebjacob/LayerAlchemy/HEAD/documentation/docs/media/parameters/MultiplyLayerSet.png -------------------------------------------------------------------------------- /documentation/docs/media/parameters/RemoveLayerSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebjacob/LayerAlchemy/HEAD/documentation/docs/media/parameters/RemoveLayerSet.png -------------------------------------------------------------------------------- /documentation/docs/tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebjacob/LayerAlchemy/HEAD/documentation/docs/tools.md -------------------------------------------------------------------------------- /documentation/mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebjacob/LayerAlchemy/HEAD/documentation/mkdocs.yml -------------------------------------------------------------------------------- /documentation/theme/slate/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /documentation/theme/slate/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebjacob/LayerAlchemy/HEAD/documentation/theme/slate/css/base.css -------------------------------------------------------------------------------- /documentation/theme/slate/css/bootstrap-custom.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebjacob/LayerAlchemy/HEAD/documentation/theme/slate/css/bootstrap-custom.min.css -------------------------------------------------------------------------------- /documentation/theme/slate/mkdocs_theme.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebjacob/LayerAlchemy/HEAD/documentation/theme/slate/mkdocs_theme.yml -------------------------------------------------------------------------------- /icons/FlattenLayerSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebjacob/LayerAlchemy/HEAD/icons/FlattenLayerSet.png -------------------------------------------------------------------------------- /icons/GradeBeauty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebjacob/LayerAlchemy/HEAD/icons/GradeBeauty.png -------------------------------------------------------------------------------- /icons/GradeBeautyLayer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebjacob/LayerAlchemy/HEAD/icons/GradeBeautyLayer.png -------------------------------------------------------------------------------- /icons/GradeBeautyLayerSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebjacob/LayerAlchemy/HEAD/icons/GradeBeautyLayerSet.png -------------------------------------------------------------------------------- /icons/GradeLayerSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebjacob/LayerAlchemy/HEAD/icons/GradeLayerSet.png -------------------------------------------------------------------------------- /icons/MultiplyLayerSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebjacob/LayerAlchemy/HEAD/icons/MultiplyLayerSet.png -------------------------------------------------------------------------------- /icons/RemoveLayerSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebjacob/LayerAlchemy/HEAD/icons/RemoveLayerSet.png -------------------------------------------------------------------------------- /icons/documentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebjacob/LayerAlchemy/HEAD/icons/documentation.png -------------------------------------------------------------------------------- /icons/layer_alchemy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebjacob/LayerAlchemy/HEAD/icons/layer_alchemy.png -------------------------------------------------------------------------------- /icons/layer_alchemy_200px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebjacob/LayerAlchemy/HEAD/icons/layer_alchemy_200px.png -------------------------------------------------------------------------------- /include/LayerSetConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebjacob/LayerAlchemy/HEAD/include/LayerSetConfig.h -------------------------------------------------------------------------------- /include/LayerSetCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebjacob/LayerAlchemy/HEAD/include/LayerSetCore.h -------------------------------------------------------------------------------- /include/LayerSetTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebjacob/LayerAlchemy/HEAD/include/LayerSetTypes.h -------------------------------------------------------------------------------- /include/nuke/LayerSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebjacob/LayerAlchemy/HEAD/include/nuke/LayerSet.h -------------------------------------------------------------------------------- /include/nuke/LayerSetKnob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebjacob/LayerAlchemy/HEAD/include/nuke/LayerSetKnob.h -------------------------------------------------------------------------------- /include/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebjacob/LayerAlchemy/HEAD/include/version.h -------------------------------------------------------------------------------- /python/layer_alchemy/__init__.py: -------------------------------------------------------------------------------- 1 | from _config import collapse -------------------------------------------------------------------------------- /python/layer_alchemy/_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebjacob/LayerAlchemy/HEAD/python/layer_alchemy/_config.py -------------------------------------------------------------------------------- /python/nuke/init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebjacob/LayerAlchemy/HEAD/python/nuke/init.py -------------------------------------------------------------------------------- /python/nuke/layer_alchemy/__init__.py: -------------------------------------------------------------------------------- 1 | """LayerAlchemy python module init""" 2 | -------------------------------------------------------------------------------- /python/nuke/layer_alchemy/callbacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebjacob/LayerAlchemy/HEAD/python/nuke/layer_alchemy/callbacks.py -------------------------------------------------------------------------------- /python/nuke/layer_alchemy/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebjacob/LayerAlchemy/HEAD/python/nuke/layer_alchemy/constants.py -------------------------------------------------------------------------------- /python/nuke/layer_alchemy/documentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebjacob/LayerAlchemy/HEAD/python/nuke/layer_alchemy/documentation.py -------------------------------------------------------------------------------- /python/nuke/layer_alchemy/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebjacob/LayerAlchemy/HEAD/python/nuke/layer_alchemy/utilities.py -------------------------------------------------------------------------------- /python/nuke/menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebjacob/LayerAlchemy/HEAD/python/nuke/menu.py -------------------------------------------------------------------------------- /src/ConfigTester.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebjacob/LayerAlchemy/HEAD/src/ConfigTester.cpp -------------------------------------------------------------------------------- /src/LayerSetConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebjacob/LayerAlchemy/HEAD/src/LayerSetConfig.cpp -------------------------------------------------------------------------------- /src/LayerSetCore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebjacob/LayerAlchemy/HEAD/src/LayerSetCore.cpp -------------------------------------------------------------------------------- /src/LayerTester.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebjacob/LayerAlchemy/HEAD/src/LayerTester.cpp -------------------------------------------------------------------------------- /src/nuke/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebjacob/LayerAlchemy/HEAD/src/nuke/CMakeLists.txt -------------------------------------------------------------------------------- /src/nuke/FlattenLayerSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebjacob/LayerAlchemy/HEAD/src/nuke/FlattenLayerSet.cpp -------------------------------------------------------------------------------- /src/nuke/GradeBeauty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebjacob/LayerAlchemy/HEAD/src/nuke/GradeBeauty.cpp -------------------------------------------------------------------------------- /src/nuke/GradeBeautyLayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebjacob/LayerAlchemy/HEAD/src/nuke/GradeBeautyLayer.cpp -------------------------------------------------------------------------------- /src/nuke/GradeBeautyLayerSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebjacob/LayerAlchemy/HEAD/src/nuke/GradeBeautyLayerSet.cpp -------------------------------------------------------------------------------- /src/nuke/GradeLayerSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebjacob/LayerAlchemy/HEAD/src/nuke/GradeLayerSet.cpp -------------------------------------------------------------------------------- /src/nuke/LayerSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebjacob/LayerAlchemy/HEAD/src/nuke/LayerSet.cpp -------------------------------------------------------------------------------- /src/nuke/LayerSetKnob.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebjacob/LayerAlchemy/HEAD/src/nuke/LayerSetKnob.cpp -------------------------------------------------------------------------------- /src/nuke/MultiplyLayerSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebjacob/LayerAlchemy/HEAD/src/nuke/MultiplyLayerSet.cpp -------------------------------------------------------------------------------- /src/nuke/RemoveLayerSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebjacob/LayerAlchemy/HEAD/src/nuke/RemoveLayerSet.cpp --------------------------------------------------------------------------------