├── .gitattributes ├── .gitignore ├── CHANGELOG.md ├── CHANGELOG.md.meta ├── Documentation~ ├── Documentation.md └── Images │ └── RelaxingCorner │ ├── SSGI_Disabled.jpg │ └── SSGI_FullRes_High.jpg ├── Editor.meta ├── Editor ├── KeepDeferredVariantsEditor.cs ├── KeepDeferredVariantsEditor.cs.meta ├── SSGIURP.Editor.asmdef ├── SSGIURP.Editor.asmdef.meta ├── ScreenSpaceGlobalIlluminationVolumeEditor.cs └── ScreenSpaceGlobalIlluminationVolumeEditor.cs.meta ├── LICENSE.md ├── LICENSE.md.meta ├── README.md ├── README.md.meta ├── Runtime.meta ├── Runtime ├── SSGIURP.asmdef ├── SSGIURP.asmdef.meta ├── ScreenSpaceGlobalIlluminationURP.cs ├── ScreenSpaceGlobalIlluminationURP.cs.meta ├── ScreenSpaceGlobalIlluminationVolume.cs └── ScreenSpaceGlobalIlluminationVolume.cs.meta ├── Samples~ ├── Relaxing Corner.meta └── Relaxing Corner │ ├── Materials.meta │ ├── Materials │ ├── Bean Bag.mat │ ├── Bean Bag.mat.meta │ ├── Book0 Side.mat │ ├── Book0 Side.mat.meta │ ├── Book0.mat │ ├── Book0.mat.meta │ ├── Book1 Side.mat │ ├── Book1 Side.mat.meta │ ├── Book1.mat │ ├── Book1.mat.meta │ ├── Book2 Side.mat │ ├── Book2 Side.mat.meta │ ├── Book2.mat │ ├── Book2.mat.meta │ ├── Book3 Side.mat │ ├── Book3 Side.mat.meta │ ├── Book3.mat │ ├── Book3.mat.meta │ ├── Book4 Side.mat │ ├── Book4 Side.mat.meta │ ├── Book4.mat │ ├── Book4.mat.meta │ ├── Book5 Side.mat │ ├── Book5 Side.mat.meta │ ├── Book5.mat │ ├── Book5.mat.meta │ ├── Book6 Side.mat │ ├── Book6 Side.mat.meta │ ├── Book6.mat │ ├── Book6.mat.meta │ ├── Carpet.mat │ ├── Carpet.mat.meta │ ├── HDRI Sky.mat │ ├── HDRI Sky.mat.meta │ ├── Plastic Venetian.mat │ ├── Plastic Venetian.mat.meta │ ├── Room Floor.mat │ ├── Room Floor.mat.meta │ ├── Room Wall.mat │ ├── Room Wall.mat.meta │ ├── Slatted Wall.mat │ ├── Slatted Wall.mat.meta │ ├── Sphere Decoration Glow.mat │ ├── Sphere Decoration Glow.mat.meta │ ├── Sphere Decoration.mat │ ├── Sphere Decoration.mat.meta │ ├── Venetian Frame.mat │ ├── Venetian Frame.mat.meta │ ├── Venetian Updown String.mat │ ├── Venetian Updown String.mat.meta │ ├── Window Frame.mat │ ├── Window Frame.mat.meta │ ├── Window Glass.mat │ ├── Window Glass.mat.meta │ ├── Window Stool.mat │ └── Window Stool.mat.meta │ ├── Meshes.meta │ ├── Meshes │ ├── Model.meta │ ├── Model │ │ ├── Relaxing Corner.fbx │ │ └── Relaxing Corner.fbx.meta │ ├── Prefab.meta │ └── Prefab │ │ ├── Bean Bag.prefab │ │ ├── Bean Bag.prefab.meta │ │ ├── Books.prefab │ │ ├── Books.prefab.meta │ │ ├── Carpet.prefab │ │ ├── Carpet.prefab.meta │ │ ├── Cushion.prefab │ │ ├── Cushion.prefab.meta │ │ ├── Floating Shelves 1.prefab │ │ ├── Floating Shelves 1.prefab.meta │ │ ├── Room Window.prefab │ │ ├── Room Window.prefab.meta │ │ ├── Room.prefab │ │ ├── Room.prefab.meta │ │ ├── Slatted Wall.prefab │ │ ├── Slatted Wall.prefab.meta │ │ ├── Sphere Decoration.prefab │ │ ├── Sphere Decoration.prefab.meta │ │ ├── Venetian Frame.prefab │ │ ├── Venetian Frame.prefab.meta │ │ ├── Wavy Slatted Wall.prefab │ │ └── Wavy Slatted Wall.prefab.meta │ ├── Relaxing Corner.meta │ ├── Relaxing Corner.unity │ ├── Relaxing Corner.unity.meta │ ├── Relaxing Corner │ ├── LightingData.asset │ ├── LightingData.asset.meta │ ├── ReflectionProbe-0.exr │ ├── ReflectionProbe-0.exr.meta │ ├── ReflectionProbe-1.exr │ ├── ReflectionProbe-1.exr.meta │ ├── Relaxing Corner Lighting Settings.lighting │ ├── Relaxing Corner Lighting Settings.lighting.meta │ ├── Relaxing Corner Volume Profile.asset │ └── Relaxing Corner Volume Profile.asset.meta │ ├── Textures.meta │ └── Textures │ ├── CarpetColor_512.jpg │ ├── CarpetColor_512.jpg.meta │ ├── Studio Garden 512.exr │ ├── Studio Garden 512.exr.meta │ ├── Wood003_512_AlbedoSmoothness.png │ ├── Wood003_512_AlbedoSmoothness.png.meta │ ├── Wood003_512_Normal.jpg │ ├── Wood003_512_Normal.jpg.meta │ ├── WoodFloor057_1024_AlbedoSmoothness.png │ ├── WoodFloor057_1024_AlbedoSmoothness.png.meta │ ├── WoodFloor057_512_Normal.jpg │ └── WoodFloor057_512_Normal.jpg.meta ├── Shaders.meta ├── Shaders ├── SSGI.hlsl ├── SSGI.hlsl.meta ├── SSGIConfig.hlsl ├── SSGIConfig.hlsl.meta ├── SSGIDenoise.hlsl ├── SSGIDenoise.hlsl.meta ├── SSGIFallback.hlsl ├── SSGIFallback.hlsl.meta ├── SSGIInput.hlsl ├── SSGIInput.hlsl.meta ├── SSGIUtilities.hlsl ├── SSGIUtilities.hlsl.meta ├── ScreenSpaceGlobalIllumination.shader └── ScreenSpaceGlobalIllumination.shader.meta ├── package.json └── package.json.meta /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CHANGELOG.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/CHANGELOG.md.meta -------------------------------------------------------------------------------- /Documentation~/Documentation.md: -------------------------------------------------------------------------------- 1 | # Documentation 2 | 3 | This page will be available soon. -------------------------------------------------------------------------------- /Documentation~/Images/RelaxingCorner/SSGI_Disabled.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Documentation~/Images/RelaxingCorner/SSGI_Disabled.jpg -------------------------------------------------------------------------------- /Documentation~/Images/RelaxingCorner/SSGI_FullRes_High.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Documentation~/Images/RelaxingCorner/SSGI_FullRes_High.jpg -------------------------------------------------------------------------------- /Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Editor.meta -------------------------------------------------------------------------------- /Editor/KeepDeferredVariantsEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Editor/KeepDeferredVariantsEditor.cs -------------------------------------------------------------------------------- /Editor/KeepDeferredVariantsEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9c46a0b8d3d5c434dbde59d0b9d81d1c -------------------------------------------------------------------------------- /Editor/SSGIURP.Editor.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Editor/SSGIURP.Editor.asmdef -------------------------------------------------------------------------------- /Editor/SSGIURP.Editor.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Editor/SSGIURP.Editor.asmdef.meta -------------------------------------------------------------------------------- /Editor/ScreenSpaceGlobalIlluminationVolumeEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Editor/ScreenSpaceGlobalIlluminationVolumeEditor.cs -------------------------------------------------------------------------------- /Editor/ScreenSpaceGlobalIlluminationVolumeEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2ce46beeba10c1342b9f975ac56bfc98 -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/LICENSE.md -------------------------------------------------------------------------------- /LICENSE.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/LICENSE.md.meta -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/README.md -------------------------------------------------------------------------------- /README.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/README.md.meta -------------------------------------------------------------------------------- /Runtime.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Runtime.meta -------------------------------------------------------------------------------- /Runtime/SSGIURP.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Runtime/SSGIURP.asmdef -------------------------------------------------------------------------------- /Runtime/SSGIURP.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Runtime/SSGIURP.asmdef.meta -------------------------------------------------------------------------------- /Runtime/ScreenSpaceGlobalIlluminationURP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Runtime/ScreenSpaceGlobalIlluminationURP.cs -------------------------------------------------------------------------------- /Runtime/ScreenSpaceGlobalIlluminationURP.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Runtime/ScreenSpaceGlobalIlluminationURP.cs.meta -------------------------------------------------------------------------------- /Runtime/ScreenSpaceGlobalIlluminationVolume.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Runtime/ScreenSpaceGlobalIlluminationVolume.cs -------------------------------------------------------------------------------- /Runtime/ScreenSpaceGlobalIlluminationVolume.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2fd03cbbfa7b7fe4dbc3d7709b42d662 -------------------------------------------------------------------------------- /Samples~/Relaxing Corner.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner.meta -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Materials.meta -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Materials/Bean Bag.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Materials/Bean Bag.mat -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Materials/Bean Bag.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Materials/Bean Bag.mat.meta -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Materials/Book0 Side.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Materials/Book0 Side.mat -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Materials/Book0 Side.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Materials/Book0 Side.mat.meta -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Materials/Book0.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Materials/Book0.mat -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Materials/Book0.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Materials/Book0.mat.meta -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Materials/Book1 Side.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Materials/Book1 Side.mat -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Materials/Book1 Side.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Materials/Book1 Side.mat.meta -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Materials/Book1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Materials/Book1.mat -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Materials/Book1.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Materials/Book1.mat.meta -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Materials/Book2 Side.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Materials/Book2 Side.mat -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Materials/Book2 Side.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Materials/Book2 Side.mat.meta -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Materials/Book2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Materials/Book2.mat -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Materials/Book2.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Materials/Book2.mat.meta -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Materials/Book3 Side.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Materials/Book3 Side.mat -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Materials/Book3 Side.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Materials/Book3 Side.mat.meta -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Materials/Book3.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Materials/Book3.mat -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Materials/Book3.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Materials/Book3.mat.meta -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Materials/Book4 Side.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Materials/Book4 Side.mat -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Materials/Book4 Side.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Materials/Book4 Side.mat.meta -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Materials/Book4.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Materials/Book4.mat -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Materials/Book4.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Materials/Book4.mat.meta -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Materials/Book5 Side.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Materials/Book5 Side.mat -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Materials/Book5 Side.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Materials/Book5 Side.mat.meta -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Materials/Book5.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Materials/Book5.mat -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Materials/Book5.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Materials/Book5.mat.meta -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Materials/Book6 Side.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Materials/Book6 Side.mat -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Materials/Book6 Side.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Materials/Book6 Side.mat.meta -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Materials/Book6.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Materials/Book6.mat -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Materials/Book6.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Materials/Book6.mat.meta -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Materials/Carpet.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Materials/Carpet.mat -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Materials/Carpet.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Materials/Carpet.mat.meta -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Materials/HDRI Sky.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Materials/HDRI Sky.mat -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Materials/HDRI Sky.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Materials/HDRI Sky.mat.meta -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Materials/Plastic Venetian.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Materials/Plastic Venetian.mat -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Materials/Plastic Venetian.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Materials/Plastic Venetian.mat.meta -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Materials/Room Floor.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Materials/Room Floor.mat -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Materials/Room Floor.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Materials/Room Floor.mat.meta -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Materials/Room Wall.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Materials/Room Wall.mat -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Materials/Room Wall.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Materials/Room Wall.mat.meta -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Materials/Slatted Wall.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Materials/Slatted Wall.mat -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Materials/Slatted Wall.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Materials/Slatted Wall.mat.meta -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Materials/Sphere Decoration Glow.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Materials/Sphere Decoration Glow.mat -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Materials/Sphere Decoration Glow.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Materials/Sphere Decoration Glow.mat.meta -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Materials/Sphere Decoration.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Materials/Sphere Decoration.mat -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Materials/Sphere Decoration.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Materials/Sphere Decoration.mat.meta -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Materials/Venetian Frame.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Materials/Venetian Frame.mat -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Materials/Venetian Frame.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Materials/Venetian Frame.mat.meta -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Materials/Venetian Updown String.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Materials/Venetian Updown String.mat -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Materials/Venetian Updown String.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Materials/Venetian Updown String.mat.meta -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Materials/Window Frame.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Materials/Window Frame.mat -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Materials/Window Frame.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Materials/Window Frame.mat.meta -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Materials/Window Glass.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Materials/Window Glass.mat -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Materials/Window Glass.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Materials/Window Glass.mat.meta -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Materials/Window Stool.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Materials/Window Stool.mat -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Materials/Window Stool.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Materials/Window Stool.mat.meta -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Meshes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Meshes.meta -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Meshes/Model.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Meshes/Model.meta -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Meshes/Model/Relaxing Corner.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Meshes/Model/Relaxing Corner.fbx -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Meshes/Model/Relaxing Corner.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Meshes/Model/Relaxing Corner.fbx.meta -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Meshes/Prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Meshes/Prefab.meta -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Meshes/Prefab/Bean Bag.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Meshes/Prefab/Bean Bag.prefab -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Meshes/Prefab/Bean Bag.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Meshes/Prefab/Bean Bag.prefab.meta -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Meshes/Prefab/Books.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Meshes/Prefab/Books.prefab -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Meshes/Prefab/Books.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Meshes/Prefab/Books.prefab.meta -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Meshes/Prefab/Carpet.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Meshes/Prefab/Carpet.prefab -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Meshes/Prefab/Carpet.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Meshes/Prefab/Carpet.prefab.meta -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Meshes/Prefab/Cushion.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Meshes/Prefab/Cushion.prefab -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Meshes/Prefab/Cushion.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Meshes/Prefab/Cushion.prefab.meta -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Meshes/Prefab/Floating Shelves 1.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Meshes/Prefab/Floating Shelves 1.prefab -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Meshes/Prefab/Floating Shelves 1.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Meshes/Prefab/Floating Shelves 1.prefab.meta -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Meshes/Prefab/Room Window.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Meshes/Prefab/Room Window.prefab -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Meshes/Prefab/Room Window.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Meshes/Prefab/Room Window.prefab.meta -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Meshes/Prefab/Room.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Meshes/Prefab/Room.prefab -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Meshes/Prefab/Room.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Meshes/Prefab/Room.prefab.meta -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Meshes/Prefab/Slatted Wall.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Meshes/Prefab/Slatted Wall.prefab -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Meshes/Prefab/Slatted Wall.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Meshes/Prefab/Slatted Wall.prefab.meta -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Meshes/Prefab/Sphere Decoration.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Meshes/Prefab/Sphere Decoration.prefab -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Meshes/Prefab/Sphere Decoration.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Meshes/Prefab/Sphere Decoration.prefab.meta -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Meshes/Prefab/Venetian Frame.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Meshes/Prefab/Venetian Frame.prefab -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Meshes/Prefab/Venetian Frame.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Meshes/Prefab/Venetian Frame.prefab.meta -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Meshes/Prefab/Wavy Slatted Wall.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Meshes/Prefab/Wavy Slatted Wall.prefab -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Meshes/Prefab/Wavy Slatted Wall.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Meshes/Prefab/Wavy Slatted Wall.prefab.meta -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Relaxing Corner.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Relaxing Corner.meta -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Relaxing Corner.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Relaxing Corner.unity -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Relaxing Corner.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Relaxing Corner.unity.meta -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Relaxing Corner/LightingData.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Relaxing Corner/LightingData.asset -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Relaxing Corner/LightingData.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Relaxing Corner/LightingData.asset.meta -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Relaxing Corner/ReflectionProbe-0.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Relaxing Corner/ReflectionProbe-0.exr -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Relaxing Corner/ReflectionProbe-0.exr.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Relaxing Corner/ReflectionProbe-0.exr.meta -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Relaxing Corner/ReflectionProbe-1.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Relaxing Corner/ReflectionProbe-1.exr -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Relaxing Corner/ReflectionProbe-1.exr.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Relaxing Corner/ReflectionProbe-1.exr.meta -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Relaxing Corner/Relaxing Corner Lighting Settings.lighting: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Relaxing Corner/Relaxing Corner Lighting Settings.lighting -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Relaxing Corner/Relaxing Corner Lighting Settings.lighting.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Relaxing Corner/Relaxing Corner Lighting Settings.lighting.meta -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Relaxing Corner/Relaxing Corner Volume Profile.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Relaxing Corner/Relaxing Corner Volume Profile.asset -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Relaxing Corner/Relaxing Corner Volume Profile.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Relaxing Corner/Relaxing Corner Volume Profile.asset.meta -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Textures.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Textures.meta -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Textures/CarpetColor_512.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Textures/CarpetColor_512.jpg -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Textures/CarpetColor_512.jpg.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Textures/CarpetColor_512.jpg.meta -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Textures/Studio Garden 512.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Textures/Studio Garden 512.exr -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Textures/Studio Garden 512.exr.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Textures/Studio Garden 512.exr.meta -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Textures/Wood003_512_AlbedoSmoothness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Textures/Wood003_512_AlbedoSmoothness.png -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Textures/Wood003_512_AlbedoSmoothness.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Textures/Wood003_512_AlbedoSmoothness.png.meta -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Textures/Wood003_512_Normal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Textures/Wood003_512_Normal.jpg -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Textures/Wood003_512_Normal.jpg.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Textures/Wood003_512_Normal.jpg.meta -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Textures/WoodFloor057_1024_AlbedoSmoothness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Textures/WoodFloor057_1024_AlbedoSmoothness.png -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Textures/WoodFloor057_1024_AlbedoSmoothness.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Textures/WoodFloor057_1024_AlbedoSmoothness.png.meta -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Textures/WoodFloor057_512_Normal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Textures/WoodFloor057_512_Normal.jpg -------------------------------------------------------------------------------- /Samples~/Relaxing Corner/Textures/WoodFloor057_512_Normal.jpg.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Samples~/Relaxing Corner/Textures/WoodFloor057_512_Normal.jpg.meta -------------------------------------------------------------------------------- /Shaders.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Shaders.meta -------------------------------------------------------------------------------- /Shaders/SSGI.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Shaders/SSGI.hlsl -------------------------------------------------------------------------------- /Shaders/SSGI.hlsl.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Shaders/SSGI.hlsl.meta -------------------------------------------------------------------------------- /Shaders/SSGIConfig.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Shaders/SSGIConfig.hlsl -------------------------------------------------------------------------------- /Shaders/SSGIConfig.hlsl.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Shaders/SSGIConfig.hlsl.meta -------------------------------------------------------------------------------- /Shaders/SSGIDenoise.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Shaders/SSGIDenoise.hlsl -------------------------------------------------------------------------------- /Shaders/SSGIDenoise.hlsl.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Shaders/SSGIDenoise.hlsl.meta -------------------------------------------------------------------------------- /Shaders/SSGIFallback.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Shaders/SSGIFallback.hlsl -------------------------------------------------------------------------------- /Shaders/SSGIFallback.hlsl.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Shaders/SSGIFallback.hlsl.meta -------------------------------------------------------------------------------- /Shaders/SSGIInput.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Shaders/SSGIInput.hlsl -------------------------------------------------------------------------------- /Shaders/SSGIInput.hlsl.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Shaders/SSGIInput.hlsl.meta -------------------------------------------------------------------------------- /Shaders/SSGIUtilities.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Shaders/SSGIUtilities.hlsl -------------------------------------------------------------------------------- /Shaders/SSGIUtilities.hlsl.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Shaders/SSGIUtilities.hlsl.meta -------------------------------------------------------------------------------- /Shaders/ScreenSpaceGlobalIllumination.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Shaders/ScreenSpaceGlobalIllumination.shader -------------------------------------------------------------------------------- /Shaders/ScreenSpaceGlobalIllumination.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/Shaders/ScreenSpaceGlobalIllumination.shader.meta -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/package.json -------------------------------------------------------------------------------- /package.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozi158/UnitySSGIURP/HEAD/package.json.meta --------------------------------------------------------------------------------