├── .gitignore ├── LICENSE.md ├── OPmenu.xml ├── README.md ├── egRedshiftTools.code-workspace ├── egRedshiftTools.json ├── icons └── redshift.png ├── images └── Tree.png ├── otls ├── eg_MacBethRedshift.hdalc ├── eg_Turntable_RS.hdalc └── eg_ocio_convert.hdalc ├── python2.7libs ├── eg_applyRSMat.py ├── eg_camToROP.py ├── eg_clearOGL.py ├── eg_takesFromCams.py ├── materialBuild_RS │ ├── Node.py │ ├── __init__.py │ ├── backup │ │ └── eg_RSMat.py │ ├── controller.py │ ├── core.py │ ├── core_old.py │ ├── eg_RSMat.py │ ├── eg_convert.py │ ├── eg_setupOGL.py │ ├── view.py │ └── view.ui └── materialConvert_RS │ ├── __init__.py │ └── controller.py ├── python3.7libs ├── eg_applyRSMat.py ├── eg_camToROP.py ├── eg_clearOGL.py ├── eg_takesFromCams.py ├── materialBuild_RS │ ├── Node.py │ ├── __init__.py │ ├── backup │ │ └── eg_RSMat.py │ ├── controller.py │ ├── core.py │ ├── eg_RSMat.py │ ├── eg_convert.py │ ├── eg_setupOGL.py │ ├── view.py │ └── view.ui └── materialConvert_RS │ ├── .vscode │ └── settings.json │ ├── __init__.py │ ├── controller.py │ └── eg_convert.py ├── python3.9libs ├── eg_applyRSMat.py ├── eg_camToROP.py ├── eg_clearOGL.py ├── eg_takesFromCams.py ├── materialBuild_RS │ ├── Node.py │ ├── __init__.py │ ├── backup │ │ └── eg_RSMat.py │ ├── controller.py │ ├── core.py │ ├── eg_RSMat.py │ ├── eg_convert.py │ ├── eg_setupOGL.py │ ├── view.py │ └── view.ui └── materialConvert_RS │ ├── .vscode │ └── settings.json │ ├── __init__.py │ ├── controller.py │ └── eg_convert.py └── toolbar └── egRedshiftTools.shelf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eglaubauf/egRedshiftTools/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eglaubauf/egRedshiftTools/HEAD/LICENSE.md -------------------------------------------------------------------------------- /OPmenu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eglaubauf/egRedshiftTools/HEAD/OPmenu.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eglaubauf/egRedshiftTools/HEAD/README.md -------------------------------------------------------------------------------- /egRedshiftTools.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eglaubauf/egRedshiftTools/HEAD/egRedshiftTools.code-workspace -------------------------------------------------------------------------------- /egRedshiftTools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eglaubauf/egRedshiftTools/HEAD/egRedshiftTools.json -------------------------------------------------------------------------------- /icons/redshift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eglaubauf/egRedshiftTools/HEAD/icons/redshift.png -------------------------------------------------------------------------------- /images/Tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eglaubauf/egRedshiftTools/HEAD/images/Tree.png -------------------------------------------------------------------------------- /otls/eg_MacBethRedshift.hdalc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eglaubauf/egRedshiftTools/HEAD/otls/eg_MacBethRedshift.hdalc -------------------------------------------------------------------------------- /otls/eg_Turntable_RS.hdalc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eglaubauf/egRedshiftTools/HEAD/otls/eg_Turntable_RS.hdalc -------------------------------------------------------------------------------- /otls/eg_ocio_convert.hdalc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eglaubauf/egRedshiftTools/HEAD/otls/eg_ocio_convert.hdalc -------------------------------------------------------------------------------- /python2.7libs/eg_applyRSMat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eglaubauf/egRedshiftTools/HEAD/python2.7libs/eg_applyRSMat.py -------------------------------------------------------------------------------- /python2.7libs/eg_camToROP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eglaubauf/egRedshiftTools/HEAD/python2.7libs/eg_camToROP.py -------------------------------------------------------------------------------- /python2.7libs/eg_clearOGL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eglaubauf/egRedshiftTools/HEAD/python2.7libs/eg_clearOGL.py -------------------------------------------------------------------------------- /python2.7libs/eg_takesFromCams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eglaubauf/egRedshiftTools/HEAD/python2.7libs/eg_takesFromCams.py -------------------------------------------------------------------------------- /python2.7libs/materialBuild_RS/Node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eglaubauf/egRedshiftTools/HEAD/python2.7libs/materialBuild_RS/Node.py -------------------------------------------------------------------------------- /python2.7libs/materialBuild_RS/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python2.7libs/materialBuild_RS/backup/eg_RSMat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eglaubauf/egRedshiftTools/HEAD/python2.7libs/materialBuild_RS/backup/eg_RSMat.py -------------------------------------------------------------------------------- /python2.7libs/materialBuild_RS/controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eglaubauf/egRedshiftTools/HEAD/python2.7libs/materialBuild_RS/controller.py -------------------------------------------------------------------------------- /python2.7libs/materialBuild_RS/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eglaubauf/egRedshiftTools/HEAD/python2.7libs/materialBuild_RS/core.py -------------------------------------------------------------------------------- /python2.7libs/materialBuild_RS/core_old.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eglaubauf/egRedshiftTools/HEAD/python2.7libs/materialBuild_RS/core_old.py -------------------------------------------------------------------------------- /python2.7libs/materialBuild_RS/eg_RSMat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eglaubauf/egRedshiftTools/HEAD/python2.7libs/materialBuild_RS/eg_RSMat.py -------------------------------------------------------------------------------- /python2.7libs/materialBuild_RS/eg_convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eglaubauf/egRedshiftTools/HEAD/python2.7libs/materialBuild_RS/eg_convert.py -------------------------------------------------------------------------------- /python2.7libs/materialBuild_RS/eg_setupOGL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eglaubauf/egRedshiftTools/HEAD/python2.7libs/materialBuild_RS/eg_setupOGL.py -------------------------------------------------------------------------------- /python2.7libs/materialBuild_RS/view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eglaubauf/egRedshiftTools/HEAD/python2.7libs/materialBuild_RS/view.py -------------------------------------------------------------------------------- /python2.7libs/materialBuild_RS/view.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eglaubauf/egRedshiftTools/HEAD/python2.7libs/materialBuild_RS/view.ui -------------------------------------------------------------------------------- /python2.7libs/materialConvert_RS/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python2.7libs/materialConvert_RS/controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eglaubauf/egRedshiftTools/HEAD/python2.7libs/materialConvert_RS/controller.py -------------------------------------------------------------------------------- /python3.7libs/eg_applyRSMat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eglaubauf/egRedshiftTools/HEAD/python3.7libs/eg_applyRSMat.py -------------------------------------------------------------------------------- /python3.7libs/eg_camToROP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eglaubauf/egRedshiftTools/HEAD/python3.7libs/eg_camToROP.py -------------------------------------------------------------------------------- /python3.7libs/eg_clearOGL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eglaubauf/egRedshiftTools/HEAD/python3.7libs/eg_clearOGL.py -------------------------------------------------------------------------------- /python3.7libs/eg_takesFromCams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eglaubauf/egRedshiftTools/HEAD/python3.7libs/eg_takesFromCams.py -------------------------------------------------------------------------------- /python3.7libs/materialBuild_RS/Node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eglaubauf/egRedshiftTools/HEAD/python3.7libs/materialBuild_RS/Node.py -------------------------------------------------------------------------------- /python3.7libs/materialBuild_RS/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python3.7libs/materialBuild_RS/backup/eg_RSMat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eglaubauf/egRedshiftTools/HEAD/python3.7libs/materialBuild_RS/backup/eg_RSMat.py -------------------------------------------------------------------------------- /python3.7libs/materialBuild_RS/controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eglaubauf/egRedshiftTools/HEAD/python3.7libs/materialBuild_RS/controller.py -------------------------------------------------------------------------------- /python3.7libs/materialBuild_RS/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eglaubauf/egRedshiftTools/HEAD/python3.7libs/materialBuild_RS/core.py -------------------------------------------------------------------------------- /python3.7libs/materialBuild_RS/eg_RSMat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eglaubauf/egRedshiftTools/HEAD/python3.7libs/materialBuild_RS/eg_RSMat.py -------------------------------------------------------------------------------- /python3.7libs/materialBuild_RS/eg_convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eglaubauf/egRedshiftTools/HEAD/python3.7libs/materialBuild_RS/eg_convert.py -------------------------------------------------------------------------------- /python3.7libs/materialBuild_RS/eg_setupOGL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eglaubauf/egRedshiftTools/HEAD/python3.7libs/materialBuild_RS/eg_setupOGL.py -------------------------------------------------------------------------------- /python3.7libs/materialBuild_RS/view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eglaubauf/egRedshiftTools/HEAD/python3.7libs/materialBuild_RS/view.py -------------------------------------------------------------------------------- /python3.7libs/materialBuild_RS/view.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eglaubauf/egRedshiftTools/HEAD/python3.7libs/materialBuild_RS/view.ui -------------------------------------------------------------------------------- /python3.7libs/materialConvert_RS/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eglaubauf/egRedshiftTools/HEAD/python3.7libs/materialConvert_RS/.vscode/settings.json -------------------------------------------------------------------------------- /python3.7libs/materialConvert_RS/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python3.7libs/materialConvert_RS/controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eglaubauf/egRedshiftTools/HEAD/python3.7libs/materialConvert_RS/controller.py -------------------------------------------------------------------------------- /python3.7libs/materialConvert_RS/eg_convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eglaubauf/egRedshiftTools/HEAD/python3.7libs/materialConvert_RS/eg_convert.py -------------------------------------------------------------------------------- /python3.9libs/eg_applyRSMat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eglaubauf/egRedshiftTools/HEAD/python3.9libs/eg_applyRSMat.py -------------------------------------------------------------------------------- /python3.9libs/eg_camToROP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eglaubauf/egRedshiftTools/HEAD/python3.9libs/eg_camToROP.py -------------------------------------------------------------------------------- /python3.9libs/eg_clearOGL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eglaubauf/egRedshiftTools/HEAD/python3.9libs/eg_clearOGL.py -------------------------------------------------------------------------------- /python3.9libs/eg_takesFromCams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eglaubauf/egRedshiftTools/HEAD/python3.9libs/eg_takesFromCams.py -------------------------------------------------------------------------------- /python3.9libs/materialBuild_RS/Node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eglaubauf/egRedshiftTools/HEAD/python3.9libs/materialBuild_RS/Node.py -------------------------------------------------------------------------------- /python3.9libs/materialBuild_RS/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python3.9libs/materialBuild_RS/backup/eg_RSMat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eglaubauf/egRedshiftTools/HEAD/python3.9libs/materialBuild_RS/backup/eg_RSMat.py -------------------------------------------------------------------------------- /python3.9libs/materialBuild_RS/controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eglaubauf/egRedshiftTools/HEAD/python3.9libs/materialBuild_RS/controller.py -------------------------------------------------------------------------------- /python3.9libs/materialBuild_RS/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eglaubauf/egRedshiftTools/HEAD/python3.9libs/materialBuild_RS/core.py -------------------------------------------------------------------------------- /python3.9libs/materialBuild_RS/eg_RSMat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eglaubauf/egRedshiftTools/HEAD/python3.9libs/materialBuild_RS/eg_RSMat.py -------------------------------------------------------------------------------- /python3.9libs/materialBuild_RS/eg_convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eglaubauf/egRedshiftTools/HEAD/python3.9libs/materialBuild_RS/eg_convert.py -------------------------------------------------------------------------------- /python3.9libs/materialBuild_RS/eg_setupOGL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eglaubauf/egRedshiftTools/HEAD/python3.9libs/materialBuild_RS/eg_setupOGL.py -------------------------------------------------------------------------------- /python3.9libs/materialBuild_RS/view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eglaubauf/egRedshiftTools/HEAD/python3.9libs/materialBuild_RS/view.py -------------------------------------------------------------------------------- /python3.9libs/materialBuild_RS/view.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eglaubauf/egRedshiftTools/HEAD/python3.9libs/materialBuild_RS/view.ui -------------------------------------------------------------------------------- /python3.9libs/materialConvert_RS/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eglaubauf/egRedshiftTools/HEAD/python3.9libs/materialConvert_RS/.vscode/settings.json -------------------------------------------------------------------------------- /python3.9libs/materialConvert_RS/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python3.9libs/materialConvert_RS/controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eglaubauf/egRedshiftTools/HEAD/python3.9libs/materialConvert_RS/controller.py -------------------------------------------------------------------------------- /python3.9libs/materialConvert_RS/eg_convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eglaubauf/egRedshiftTools/HEAD/python3.9libs/materialConvert_RS/eg_convert.py -------------------------------------------------------------------------------- /toolbar/egRedshiftTools.shelf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eglaubauf/egRedshiftTools/HEAD/toolbar/egRedshiftTools.shelf --------------------------------------------------------------------------------