├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── Hash └── HashCheck.bat ├── LICENSE ├── LightmassConfiguration.bat ├── README.md └── hash.txt /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgeraldes/LightmassConfiguration/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgeraldes/LightmassConfiguration/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgeraldes/LightmassConfiguration/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Hash/HashCheck.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgeraldes/LightmassConfiguration/HEAD/Hash/HashCheck.bat -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgeraldes/LightmassConfiguration/HEAD/LICENSE -------------------------------------------------------------------------------- /LightmassConfiguration.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgeraldes/LightmassConfiguration/HEAD/LightmassConfiguration.bat -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgeraldes/LightmassConfiguration/HEAD/README.md -------------------------------------------------------------------------------- /hash.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgeraldes/LightmassConfiguration/HEAD/hash.txt --------------------------------------------------------------------------------