├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── SpecularLightmaps ├── BakedReflectionsCommon.cginc ├── BakedReflectionsCommon.cginc.meta ├── CubemapToTexture2D.shader ├── CubemapToTexture2D.shader.meta ├── ExtractPoisition.shader ├── ExtractPoisition.shader.meta ├── SpecularLightmapClassic.shader ├── SpecularLightmapClassic.shader.meta ├── SpecularLightmapSettings.cs ├── SpecularLightmapSettings.cs.meta ├── SpecularLightmapTag.cs ├── SpecularLightmapTag.cs.meta ├── SpecularLightmapping.cs ├── SpecularLightmapping.cs.meta ├── Tests 1.meta ├── Tests 1 │ ├── ArrayIndexConv.cs │ ├── ArrayIndexConv.cs.meta │ ├── Tests 1.asmdef │ └── Tests 1.asmdef.meta ├── displayBakedReflection.shader ├── displayBakedReflection.shader.meta ├── glossy test.mat └── glossy test.mat.meta ├── _config.yml └── bakedReflectionExample.JPG /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julhe/BakedReflectionsUnity/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julhe/BakedReflectionsUnity/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julhe/BakedReflectionsUnity/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julhe/BakedReflectionsUnity/HEAD/README.md -------------------------------------------------------------------------------- /SpecularLightmaps/BakedReflectionsCommon.cginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julhe/BakedReflectionsUnity/HEAD/SpecularLightmaps/BakedReflectionsCommon.cginc -------------------------------------------------------------------------------- /SpecularLightmaps/BakedReflectionsCommon.cginc.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julhe/BakedReflectionsUnity/HEAD/SpecularLightmaps/BakedReflectionsCommon.cginc.meta -------------------------------------------------------------------------------- /SpecularLightmaps/CubemapToTexture2D.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julhe/BakedReflectionsUnity/HEAD/SpecularLightmaps/CubemapToTexture2D.shader -------------------------------------------------------------------------------- /SpecularLightmaps/CubemapToTexture2D.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julhe/BakedReflectionsUnity/HEAD/SpecularLightmaps/CubemapToTexture2D.shader.meta -------------------------------------------------------------------------------- /SpecularLightmaps/ExtractPoisition.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julhe/BakedReflectionsUnity/HEAD/SpecularLightmaps/ExtractPoisition.shader -------------------------------------------------------------------------------- /SpecularLightmaps/ExtractPoisition.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julhe/BakedReflectionsUnity/HEAD/SpecularLightmaps/ExtractPoisition.shader.meta -------------------------------------------------------------------------------- /SpecularLightmaps/SpecularLightmapClassic.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julhe/BakedReflectionsUnity/HEAD/SpecularLightmaps/SpecularLightmapClassic.shader -------------------------------------------------------------------------------- /SpecularLightmaps/SpecularLightmapClassic.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julhe/BakedReflectionsUnity/HEAD/SpecularLightmaps/SpecularLightmapClassic.shader.meta -------------------------------------------------------------------------------- /SpecularLightmaps/SpecularLightmapSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julhe/BakedReflectionsUnity/HEAD/SpecularLightmaps/SpecularLightmapSettings.cs -------------------------------------------------------------------------------- /SpecularLightmaps/SpecularLightmapSettings.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julhe/BakedReflectionsUnity/HEAD/SpecularLightmaps/SpecularLightmapSettings.cs.meta -------------------------------------------------------------------------------- /SpecularLightmaps/SpecularLightmapTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julhe/BakedReflectionsUnity/HEAD/SpecularLightmaps/SpecularLightmapTag.cs -------------------------------------------------------------------------------- /SpecularLightmaps/SpecularLightmapTag.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julhe/BakedReflectionsUnity/HEAD/SpecularLightmaps/SpecularLightmapTag.cs.meta -------------------------------------------------------------------------------- /SpecularLightmaps/SpecularLightmapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julhe/BakedReflectionsUnity/HEAD/SpecularLightmaps/SpecularLightmapping.cs -------------------------------------------------------------------------------- /SpecularLightmaps/SpecularLightmapping.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julhe/BakedReflectionsUnity/HEAD/SpecularLightmaps/SpecularLightmapping.cs.meta -------------------------------------------------------------------------------- /SpecularLightmaps/Tests 1.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julhe/BakedReflectionsUnity/HEAD/SpecularLightmaps/Tests 1.meta -------------------------------------------------------------------------------- /SpecularLightmaps/Tests 1/ArrayIndexConv.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julhe/BakedReflectionsUnity/HEAD/SpecularLightmaps/Tests 1/ArrayIndexConv.cs -------------------------------------------------------------------------------- /SpecularLightmaps/Tests 1/ArrayIndexConv.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julhe/BakedReflectionsUnity/HEAD/SpecularLightmaps/Tests 1/ArrayIndexConv.cs.meta -------------------------------------------------------------------------------- /SpecularLightmaps/Tests 1/Tests 1.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julhe/BakedReflectionsUnity/HEAD/SpecularLightmaps/Tests 1/Tests 1.asmdef -------------------------------------------------------------------------------- /SpecularLightmaps/Tests 1/Tests 1.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julhe/BakedReflectionsUnity/HEAD/SpecularLightmaps/Tests 1/Tests 1.asmdef.meta -------------------------------------------------------------------------------- /SpecularLightmaps/displayBakedReflection.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julhe/BakedReflectionsUnity/HEAD/SpecularLightmaps/displayBakedReflection.shader -------------------------------------------------------------------------------- /SpecularLightmaps/displayBakedReflection.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julhe/BakedReflectionsUnity/HEAD/SpecularLightmaps/displayBakedReflection.shader.meta -------------------------------------------------------------------------------- /SpecularLightmaps/glossy test.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julhe/BakedReflectionsUnity/HEAD/SpecularLightmaps/glossy test.mat -------------------------------------------------------------------------------- /SpecularLightmaps/glossy test.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julhe/BakedReflectionsUnity/HEAD/SpecularLightmaps/glossy test.mat.meta -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julhe/BakedReflectionsUnity/HEAD/_config.yml -------------------------------------------------------------------------------- /bakedReflectionExample.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julhe/BakedReflectionsUnity/HEAD/bakedReflectionExample.JPG --------------------------------------------------------------------------------