├── .gitattributes ├── .gitignore ├── CHANGELOG.md ├── CHANGELOG.md.meta ├── CONTRIBUTING.md ├── CONTRIBUTING.md.meta ├── Documentation~ ├── MainWindow.png └── social │ ├── physical-material-manager-social.png │ └── physical-material-manager-social.psd ├── Editor.meta ├── Editor ├── PhysicalMaterialController.cs ├── PhysicalMaterialController.cs.meta ├── PhysicalMaterialEditor.cs ├── PhysicalMaterialEditor.cs.meta ├── PhysicalMaterialLibrary.cs ├── PhysicalMaterialLibrary.cs.meta ├── com.pixelwizards.physicalmaterialmanager.asmdef └── com.pixelwizards.physicalmaterialmanager.asmdef.meta ├── LICENSE.md ├── LICENSE.md.meta ├── README.md ├── README.md.meta ├── package.json └── package.json.meta /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelWizards/com.pixelwizards.physicalmaterialmanager/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelWizards/com.pixelwizards.physicalmaterialmanager/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelWizards/com.pixelwizards.physicalmaterialmanager/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CHANGELOG.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelWizards/com.pixelwizards.physicalmaterialmanager/HEAD/CHANGELOG.md.meta -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelWizards/com.pixelwizards.physicalmaterialmanager/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CONTRIBUTING.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelWizards/com.pixelwizards.physicalmaterialmanager/HEAD/CONTRIBUTING.md.meta -------------------------------------------------------------------------------- /Documentation~/MainWindow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelWizards/com.pixelwizards.physicalmaterialmanager/HEAD/Documentation~/MainWindow.png -------------------------------------------------------------------------------- /Documentation~/social/physical-material-manager-social.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelWizards/com.pixelwizards.physicalmaterialmanager/HEAD/Documentation~/social/physical-material-manager-social.png -------------------------------------------------------------------------------- /Documentation~/social/physical-material-manager-social.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelWizards/com.pixelwizards.physicalmaterialmanager/HEAD/Documentation~/social/physical-material-manager-social.psd -------------------------------------------------------------------------------- /Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelWizards/com.pixelwizards.physicalmaterialmanager/HEAD/Editor.meta -------------------------------------------------------------------------------- /Editor/PhysicalMaterialController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelWizards/com.pixelwizards.physicalmaterialmanager/HEAD/Editor/PhysicalMaterialController.cs -------------------------------------------------------------------------------- /Editor/PhysicalMaterialController.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelWizards/com.pixelwizards.physicalmaterialmanager/HEAD/Editor/PhysicalMaterialController.cs.meta -------------------------------------------------------------------------------- /Editor/PhysicalMaterialEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelWizards/com.pixelwizards.physicalmaterialmanager/HEAD/Editor/PhysicalMaterialEditor.cs -------------------------------------------------------------------------------- /Editor/PhysicalMaterialEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelWizards/com.pixelwizards.physicalmaterialmanager/HEAD/Editor/PhysicalMaterialEditor.cs.meta -------------------------------------------------------------------------------- /Editor/PhysicalMaterialLibrary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelWizards/com.pixelwizards.physicalmaterialmanager/HEAD/Editor/PhysicalMaterialLibrary.cs -------------------------------------------------------------------------------- /Editor/PhysicalMaterialLibrary.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelWizards/com.pixelwizards.physicalmaterialmanager/HEAD/Editor/PhysicalMaterialLibrary.cs.meta -------------------------------------------------------------------------------- /Editor/com.pixelwizards.physicalmaterialmanager.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelWizards/com.pixelwizards.physicalmaterialmanager/HEAD/Editor/com.pixelwizards.physicalmaterialmanager.asmdef -------------------------------------------------------------------------------- /Editor/com.pixelwizards.physicalmaterialmanager.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelWizards/com.pixelwizards.physicalmaterialmanager/HEAD/Editor/com.pixelwizards.physicalmaterialmanager.asmdef.meta -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelWizards/com.pixelwizards.physicalmaterialmanager/HEAD/LICENSE.md -------------------------------------------------------------------------------- /LICENSE.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelWizards/com.pixelwizards.physicalmaterialmanager/HEAD/LICENSE.md.meta -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelWizards/com.pixelwizards.physicalmaterialmanager/HEAD/README.md -------------------------------------------------------------------------------- /README.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelWizards/com.pixelwizards.physicalmaterialmanager/HEAD/README.md.meta -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelWizards/com.pixelwizards.physicalmaterialmanager/HEAD/package.json -------------------------------------------------------------------------------- /package.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelWizards/com.pixelwizards.physicalmaterialmanager/HEAD/package.json.meta --------------------------------------------------------------------------------