├── .gitattributes ├── .gitignore ├── Assets └── 00Kamishiro │ └── TextureOverlay │ ├── CameraAnalyzer.hlsl │ ├── Editor │ ├── AKSManager.cs │ ├── AKSStyles.cs │ ├── AKSTextureOverlay4GUI.cs │ ├── AKSTextureOverlay6GUI.cs │ ├── AKSTextureOverlayGUI.cs │ └── AKSUIHelper.cs │ ├── Kamishiro.UnityShader.TextureOverlay.asmdef │ ├── TextureOverlay.hlsl │ ├── TextureOverlay.shader │ ├── TextureOverlay4.hlsl │ ├── TextureOverlay4.shader │ ├── TextureOverlay6.hlsl │ └── TextureOverlay6.shader ├── Description.md ├── Description_EN.md ├── LICENSE ├── README.md └── README_EN.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AoiKamishiro/UnityShader_TextureOverlay/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AoiKamishiro/UnityShader_TextureOverlay/HEAD/.gitignore -------------------------------------------------------------------------------- /Assets/00Kamishiro/TextureOverlay/CameraAnalyzer.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AoiKamishiro/UnityShader_TextureOverlay/HEAD/Assets/00Kamishiro/TextureOverlay/CameraAnalyzer.hlsl -------------------------------------------------------------------------------- /Assets/00Kamishiro/TextureOverlay/Editor/AKSManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AoiKamishiro/UnityShader_TextureOverlay/HEAD/Assets/00Kamishiro/TextureOverlay/Editor/AKSManager.cs -------------------------------------------------------------------------------- /Assets/00Kamishiro/TextureOverlay/Editor/AKSStyles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AoiKamishiro/UnityShader_TextureOverlay/HEAD/Assets/00Kamishiro/TextureOverlay/Editor/AKSStyles.cs -------------------------------------------------------------------------------- /Assets/00Kamishiro/TextureOverlay/Editor/AKSTextureOverlay4GUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AoiKamishiro/UnityShader_TextureOverlay/HEAD/Assets/00Kamishiro/TextureOverlay/Editor/AKSTextureOverlay4GUI.cs -------------------------------------------------------------------------------- /Assets/00Kamishiro/TextureOverlay/Editor/AKSTextureOverlay6GUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AoiKamishiro/UnityShader_TextureOverlay/HEAD/Assets/00Kamishiro/TextureOverlay/Editor/AKSTextureOverlay6GUI.cs -------------------------------------------------------------------------------- /Assets/00Kamishiro/TextureOverlay/Editor/AKSTextureOverlayGUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AoiKamishiro/UnityShader_TextureOverlay/HEAD/Assets/00Kamishiro/TextureOverlay/Editor/AKSTextureOverlayGUI.cs -------------------------------------------------------------------------------- /Assets/00Kamishiro/TextureOverlay/Editor/AKSUIHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AoiKamishiro/UnityShader_TextureOverlay/HEAD/Assets/00Kamishiro/TextureOverlay/Editor/AKSUIHelper.cs -------------------------------------------------------------------------------- /Assets/00Kamishiro/TextureOverlay/Kamishiro.UnityShader.TextureOverlay.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AoiKamishiro/UnityShader_TextureOverlay/HEAD/Assets/00Kamishiro/TextureOverlay/Kamishiro.UnityShader.TextureOverlay.asmdef -------------------------------------------------------------------------------- /Assets/00Kamishiro/TextureOverlay/TextureOverlay.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AoiKamishiro/UnityShader_TextureOverlay/HEAD/Assets/00Kamishiro/TextureOverlay/TextureOverlay.hlsl -------------------------------------------------------------------------------- /Assets/00Kamishiro/TextureOverlay/TextureOverlay.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AoiKamishiro/UnityShader_TextureOverlay/HEAD/Assets/00Kamishiro/TextureOverlay/TextureOverlay.shader -------------------------------------------------------------------------------- /Assets/00Kamishiro/TextureOverlay/TextureOverlay4.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AoiKamishiro/UnityShader_TextureOverlay/HEAD/Assets/00Kamishiro/TextureOverlay/TextureOverlay4.hlsl -------------------------------------------------------------------------------- /Assets/00Kamishiro/TextureOverlay/TextureOverlay4.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AoiKamishiro/UnityShader_TextureOverlay/HEAD/Assets/00Kamishiro/TextureOverlay/TextureOverlay4.shader -------------------------------------------------------------------------------- /Assets/00Kamishiro/TextureOverlay/TextureOverlay6.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AoiKamishiro/UnityShader_TextureOverlay/HEAD/Assets/00Kamishiro/TextureOverlay/TextureOverlay6.hlsl -------------------------------------------------------------------------------- /Assets/00Kamishiro/TextureOverlay/TextureOverlay6.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AoiKamishiro/UnityShader_TextureOverlay/HEAD/Assets/00Kamishiro/TextureOverlay/TextureOverlay6.shader -------------------------------------------------------------------------------- /Description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AoiKamishiro/UnityShader_TextureOverlay/HEAD/Description.md -------------------------------------------------------------------------------- /Description_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AoiKamishiro/UnityShader_TextureOverlay/HEAD/Description_EN.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AoiKamishiro/UnityShader_TextureOverlay/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AoiKamishiro/UnityShader_TextureOverlay/HEAD/README.md -------------------------------------------------------------------------------- /README_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AoiKamishiro/UnityShader_TextureOverlay/HEAD/README_EN.md --------------------------------------------------------------------------------