├── .gitattributes ├── .gitignore ├── Assets ├── OpenLit.meta └── OpenLit │ ├── OpenToonLit.shader │ ├── OpenToonLit.shader.meta │ ├── core.hlsl │ └── core.hlsl.meta ├── CHANGELOG.md ├── LICENSE ├── README.md └── README_JP.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilxyzw/OpenLit/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilxyzw/OpenLit/HEAD/.gitignore -------------------------------------------------------------------------------- /Assets/OpenLit.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilxyzw/OpenLit/HEAD/Assets/OpenLit.meta -------------------------------------------------------------------------------- /Assets/OpenLit/OpenToonLit.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilxyzw/OpenLit/HEAD/Assets/OpenLit/OpenToonLit.shader -------------------------------------------------------------------------------- /Assets/OpenLit/OpenToonLit.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilxyzw/OpenLit/HEAD/Assets/OpenLit/OpenToonLit.shader.meta -------------------------------------------------------------------------------- /Assets/OpenLit/core.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilxyzw/OpenLit/HEAD/Assets/OpenLit/core.hlsl -------------------------------------------------------------------------------- /Assets/OpenLit/core.hlsl.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilxyzw/OpenLit/HEAD/Assets/OpenLit/core.hlsl.meta -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilxyzw/OpenLit/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilxyzw/OpenLit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilxyzw/OpenLit/HEAD/README.md -------------------------------------------------------------------------------- /README_JP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilxyzw/OpenLit/HEAD/README_JP.md --------------------------------------------------------------------------------