├── .gitignore ├── LICENSE ├── MatLib ├── Ui │ ├── Matlib.ui │ └── icons │ │ ├── MLibraryIcon.svg │ │ ├── MPathReset.svg │ │ ├── MTransferIcon.svg │ │ ├── M_AddCat.svg │ │ ├── M_BrokenLink.svg │ │ ├── M_CreateRepo.svg │ │ ├── M_DeleteRepo.svg │ │ ├── M_Docs.svg │ │ ├── M_LeftArrow.svg │ │ ├── M_Link.svg │ │ ├── M_RemoveCat.svg │ │ ├── M_RightArrow (1).svg │ │ ├── M_RightArrow.svg │ │ ├── M_Transfer.svg │ │ ├── M_exptoArrow.svg │ │ ├── M_toArrow.svg │ │ ├── MatlibDarkLogo.svg │ │ ├── MatlibLogo.svg │ │ ├── MatlibLogoNS.svg │ │ └── MatlibLogoNS_small.svg ├── files │ ├── RS_Parms.json │ ├── config.json │ ├── mtoa_Parms.json │ └── vray_Parms.json ├── license.txt ├── scripts │ ├── MatLib.py │ ├── MatLib_tools.py │ ├── __init__.py │ ├── _color.py │ ├── _editMaterial.py │ ├── _maya.py │ ├── _mayaCacheParms.py │ ├── _mayaRePath.py │ ├── _mayaReset.py │ ├── _mayaShelfs.py │ ├── _textureTransfer.py │ ├── _transfer.py │ ├── _version.py │ └── userSetup.py └── setup │ └── Maya │ └── modules │ └── MatLib.mod ├── README.rst └── docs ├── Makefile ├── make.bat └── source ├── api.rst ├── conf.py ├── getting_started.rst ├── images ├── MatLib_Repository.jpg ├── MatLib_TransferUI.jpg ├── MatLib_logo.png ├── ShadingGroup.jpg ├── matlib_createrepository.jpg ├── matlib_edittab.jpg ├── matlib_icon.png ├── matlib_installer_page3.jpg ├── matlib_installer_page4.jpg ├── matlib_materialconfiginfo.jpg ├── matlib_materialinfo.jpg ├── matlib_materiallibrary_icon.png ├── matlib_recoveryexample.jpg ├── matlib_repositoryselect.jpg ├── matlib_resetlinks_icon.png ├── matlib_shelfonMaya.jpg ├── matlib_textureinfo.jpg ├── matlib_transfertoproject_icon.png ├── matlib_ui_explain.png ├── password_protect.jpg ├── shelf_icons.png ├── windows_warning_page1.jpg └── windows_warning_page2.jpg ├── index.rst ├── installation.rst ├── overview.rst └── tutorials.rst /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erdemirci/MatLib/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erdemirci/MatLib/HEAD/LICENSE -------------------------------------------------------------------------------- /MatLib/Ui/Matlib.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erdemirci/MatLib/HEAD/MatLib/Ui/Matlib.ui -------------------------------------------------------------------------------- /MatLib/Ui/icons/MLibraryIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erdemirci/MatLib/HEAD/MatLib/Ui/icons/MLibraryIcon.svg -------------------------------------------------------------------------------- /MatLib/Ui/icons/MPathReset.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erdemirci/MatLib/HEAD/MatLib/Ui/icons/MPathReset.svg -------------------------------------------------------------------------------- /MatLib/Ui/icons/MTransferIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erdemirci/MatLib/HEAD/MatLib/Ui/icons/MTransferIcon.svg -------------------------------------------------------------------------------- /MatLib/Ui/icons/M_AddCat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erdemirci/MatLib/HEAD/MatLib/Ui/icons/M_AddCat.svg -------------------------------------------------------------------------------- /MatLib/Ui/icons/M_BrokenLink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erdemirci/MatLib/HEAD/MatLib/Ui/icons/M_BrokenLink.svg -------------------------------------------------------------------------------- /MatLib/Ui/icons/M_CreateRepo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erdemirci/MatLib/HEAD/MatLib/Ui/icons/M_CreateRepo.svg -------------------------------------------------------------------------------- /MatLib/Ui/icons/M_DeleteRepo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erdemirci/MatLib/HEAD/MatLib/Ui/icons/M_DeleteRepo.svg -------------------------------------------------------------------------------- /MatLib/Ui/icons/M_Docs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erdemirci/MatLib/HEAD/MatLib/Ui/icons/M_Docs.svg -------------------------------------------------------------------------------- /MatLib/Ui/icons/M_LeftArrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erdemirci/MatLib/HEAD/MatLib/Ui/icons/M_LeftArrow.svg -------------------------------------------------------------------------------- /MatLib/Ui/icons/M_Link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erdemirci/MatLib/HEAD/MatLib/Ui/icons/M_Link.svg -------------------------------------------------------------------------------- /MatLib/Ui/icons/M_RemoveCat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erdemirci/MatLib/HEAD/MatLib/Ui/icons/M_RemoveCat.svg -------------------------------------------------------------------------------- /MatLib/Ui/icons/M_RightArrow (1).svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erdemirci/MatLib/HEAD/MatLib/Ui/icons/M_RightArrow (1).svg -------------------------------------------------------------------------------- /MatLib/Ui/icons/M_RightArrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erdemirci/MatLib/HEAD/MatLib/Ui/icons/M_RightArrow.svg -------------------------------------------------------------------------------- /MatLib/Ui/icons/M_Transfer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erdemirci/MatLib/HEAD/MatLib/Ui/icons/M_Transfer.svg -------------------------------------------------------------------------------- /MatLib/Ui/icons/M_exptoArrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erdemirci/MatLib/HEAD/MatLib/Ui/icons/M_exptoArrow.svg -------------------------------------------------------------------------------- /MatLib/Ui/icons/M_toArrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erdemirci/MatLib/HEAD/MatLib/Ui/icons/M_toArrow.svg -------------------------------------------------------------------------------- /MatLib/Ui/icons/MatlibDarkLogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erdemirci/MatLib/HEAD/MatLib/Ui/icons/MatlibDarkLogo.svg -------------------------------------------------------------------------------- /MatLib/Ui/icons/MatlibLogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erdemirci/MatLib/HEAD/MatLib/Ui/icons/MatlibLogo.svg -------------------------------------------------------------------------------- /MatLib/Ui/icons/MatlibLogoNS.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erdemirci/MatLib/HEAD/MatLib/Ui/icons/MatlibLogoNS.svg -------------------------------------------------------------------------------- /MatLib/Ui/icons/MatlibLogoNS_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erdemirci/MatLib/HEAD/MatLib/Ui/icons/MatlibLogoNS_small.svg -------------------------------------------------------------------------------- /MatLib/files/RS_Parms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erdemirci/MatLib/HEAD/MatLib/files/RS_Parms.json -------------------------------------------------------------------------------- /MatLib/files/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erdemirci/MatLib/HEAD/MatLib/files/config.json -------------------------------------------------------------------------------- /MatLib/files/mtoa_Parms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erdemirci/MatLib/HEAD/MatLib/files/mtoa_Parms.json -------------------------------------------------------------------------------- /MatLib/files/vray_Parms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erdemirci/MatLib/HEAD/MatLib/files/vray_Parms.json -------------------------------------------------------------------------------- /MatLib/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erdemirci/MatLib/HEAD/MatLib/license.txt -------------------------------------------------------------------------------- /MatLib/scripts/MatLib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erdemirci/MatLib/HEAD/MatLib/scripts/MatLib.py -------------------------------------------------------------------------------- /MatLib/scripts/MatLib_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erdemirci/MatLib/HEAD/MatLib/scripts/MatLib_tools.py -------------------------------------------------------------------------------- /MatLib/scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MatLib/scripts/_color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erdemirci/MatLib/HEAD/MatLib/scripts/_color.py -------------------------------------------------------------------------------- /MatLib/scripts/_editMaterial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erdemirci/MatLib/HEAD/MatLib/scripts/_editMaterial.py -------------------------------------------------------------------------------- /MatLib/scripts/_maya.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erdemirci/MatLib/HEAD/MatLib/scripts/_maya.py -------------------------------------------------------------------------------- /MatLib/scripts/_mayaCacheParms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erdemirci/MatLib/HEAD/MatLib/scripts/_mayaCacheParms.py -------------------------------------------------------------------------------- /MatLib/scripts/_mayaRePath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erdemirci/MatLib/HEAD/MatLib/scripts/_mayaRePath.py -------------------------------------------------------------------------------- /MatLib/scripts/_mayaReset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erdemirci/MatLib/HEAD/MatLib/scripts/_mayaReset.py -------------------------------------------------------------------------------- /MatLib/scripts/_mayaShelfs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erdemirci/MatLib/HEAD/MatLib/scripts/_mayaShelfs.py -------------------------------------------------------------------------------- /MatLib/scripts/_textureTransfer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erdemirci/MatLib/HEAD/MatLib/scripts/_textureTransfer.py -------------------------------------------------------------------------------- /MatLib/scripts/_transfer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erdemirci/MatLib/HEAD/MatLib/scripts/_transfer.py -------------------------------------------------------------------------------- /MatLib/scripts/_version.py: -------------------------------------------------------------------------------- 1 | __version__ = "beta v0.9" -------------------------------------------------------------------------------- /MatLib/scripts/userSetup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erdemirci/MatLib/HEAD/MatLib/scripts/userSetup.py -------------------------------------------------------------------------------- /MatLib/setup/Maya/modules/MatLib.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erdemirci/MatLib/HEAD/MatLib/setup/Maya/modules/MatLib.mod -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erdemirci/MatLib/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erdemirci/MatLib/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erdemirci/MatLib/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/source/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erdemirci/MatLib/HEAD/docs/source/api.rst -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erdemirci/MatLib/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/getting_started.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erdemirci/MatLib/HEAD/docs/source/getting_started.rst -------------------------------------------------------------------------------- /docs/source/images/MatLib_Repository.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erdemirci/MatLib/HEAD/docs/source/images/MatLib_Repository.jpg -------------------------------------------------------------------------------- /docs/source/images/MatLib_TransferUI.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erdemirci/MatLib/HEAD/docs/source/images/MatLib_TransferUI.jpg -------------------------------------------------------------------------------- /docs/source/images/MatLib_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erdemirci/MatLib/HEAD/docs/source/images/MatLib_logo.png -------------------------------------------------------------------------------- /docs/source/images/ShadingGroup.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erdemirci/MatLib/HEAD/docs/source/images/ShadingGroup.jpg -------------------------------------------------------------------------------- /docs/source/images/matlib_createrepository.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erdemirci/MatLib/HEAD/docs/source/images/matlib_createrepository.jpg -------------------------------------------------------------------------------- /docs/source/images/matlib_edittab.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erdemirci/MatLib/HEAD/docs/source/images/matlib_edittab.jpg -------------------------------------------------------------------------------- /docs/source/images/matlib_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erdemirci/MatLib/HEAD/docs/source/images/matlib_icon.png -------------------------------------------------------------------------------- /docs/source/images/matlib_installer_page3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erdemirci/MatLib/HEAD/docs/source/images/matlib_installer_page3.jpg -------------------------------------------------------------------------------- /docs/source/images/matlib_installer_page4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erdemirci/MatLib/HEAD/docs/source/images/matlib_installer_page4.jpg -------------------------------------------------------------------------------- /docs/source/images/matlib_materialconfiginfo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erdemirci/MatLib/HEAD/docs/source/images/matlib_materialconfiginfo.jpg -------------------------------------------------------------------------------- /docs/source/images/matlib_materialinfo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erdemirci/MatLib/HEAD/docs/source/images/matlib_materialinfo.jpg -------------------------------------------------------------------------------- /docs/source/images/matlib_materiallibrary_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erdemirci/MatLib/HEAD/docs/source/images/matlib_materiallibrary_icon.png -------------------------------------------------------------------------------- /docs/source/images/matlib_recoveryexample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erdemirci/MatLib/HEAD/docs/source/images/matlib_recoveryexample.jpg -------------------------------------------------------------------------------- /docs/source/images/matlib_repositoryselect.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erdemirci/MatLib/HEAD/docs/source/images/matlib_repositoryselect.jpg -------------------------------------------------------------------------------- /docs/source/images/matlib_resetlinks_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erdemirci/MatLib/HEAD/docs/source/images/matlib_resetlinks_icon.png -------------------------------------------------------------------------------- /docs/source/images/matlib_shelfonMaya.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erdemirci/MatLib/HEAD/docs/source/images/matlib_shelfonMaya.jpg -------------------------------------------------------------------------------- /docs/source/images/matlib_textureinfo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erdemirci/MatLib/HEAD/docs/source/images/matlib_textureinfo.jpg -------------------------------------------------------------------------------- /docs/source/images/matlib_transfertoproject_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erdemirci/MatLib/HEAD/docs/source/images/matlib_transfertoproject_icon.png -------------------------------------------------------------------------------- /docs/source/images/matlib_ui_explain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erdemirci/MatLib/HEAD/docs/source/images/matlib_ui_explain.png -------------------------------------------------------------------------------- /docs/source/images/password_protect.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erdemirci/MatLib/HEAD/docs/source/images/password_protect.jpg -------------------------------------------------------------------------------- /docs/source/images/shelf_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erdemirci/MatLib/HEAD/docs/source/images/shelf_icons.png -------------------------------------------------------------------------------- /docs/source/images/windows_warning_page1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erdemirci/MatLib/HEAD/docs/source/images/windows_warning_page1.jpg -------------------------------------------------------------------------------- /docs/source/images/windows_warning_page2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erdemirci/MatLib/HEAD/docs/source/images/windows_warning_page2.jpg -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erdemirci/MatLib/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erdemirci/MatLib/HEAD/docs/source/installation.rst -------------------------------------------------------------------------------- /docs/source/overview.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erdemirci/MatLib/HEAD/docs/source/overview.rst -------------------------------------------------------------------------------- /docs/source/tutorials.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erdemirci/MatLib/HEAD/docs/source/tutorials.rst --------------------------------------------------------------------------------