├── .gitignore ├── .vsconfig ├── Assets ├── SmoothNormals.meta └── SmoothNormals │ ├── Core.meta │ ├── Core │ ├── AquaSmoothNormals.cs │ ├── AquaSmoothNormals.cs.meta │ ├── AquaSys.SmoothNormals.asmdef │ └── AquaSys.SmoothNormals.asmdef.meta │ ├── Editor.meta │ ├── Editor │ ├── SmoothNormalsEditor.cs │ ├── SmoothNormalsEditor.cs.meta │ ├── SmoothNormalsMeshImporter.cs │ └── SmoothNormalsMeshImporter.cs.meta │ ├── Samples.meta │ └── Samples │ ├── Materials.meta │ ├── Materials │ ├── Cube.mat │ └── Cube.mat.meta │ ├── Scenes.meta │ ├── Scenes │ ├── SampleScene.unity │ └── SampleScene.unity.meta │ ├── Scripts.meta │ ├── Scripts │ ├── FreeCam.cs │ ├── FreeCam.cs.meta │ ├── SampleManager.cs │ └── SampleManager.cs.meta │ ├── Shaders.meta │ ├── Shaders │ ├── SimpleOutline.shader │ ├── SimpleOutline.shader.meta │ ├── URP.unitypackage │ └── URP.unitypackage.meta │ ├── Third.meta │ └── Third │ ├── UnityChan.meta │ └── UnityChan │ ├── SD_unitychan.meta │ └── SD_unitychan │ ├── Animations.meta │ ├── Animations │ ├── SD_unitychan_motion_humanoid.controller │ ├── SD_unitychan_motion_humanoid.controller.meta │ ├── SD_unitychan_motion_humanoid.fbx │ └── SD_unitychan_motion_humanoid.fbx.meta │ ├── Models.meta │ ├── Models │ ├── Materials.meta │ ├── Materials │ │ ├── def_mat.mat │ │ └── def_mat.mat.meta │ ├── SD_unitychan_humanoid.fbx │ ├── SD_unitychan_humanoid.fbx.meta │ ├── utc_all2_light.png │ └── utc_all2_light.png.meta │ ├── Prefabs.meta │ └── Prefabs │ ├── SD_unitychan_humanoid.prefab │ └── SD_unitychan_humanoid.prefab.meta ├── LICENSE ├── Packages ├── manifest.json └── packages-lock.json ├── Pictures ├── Light_Frame.png ├── Logo.afphoto ├── Logo.png ├── ScreenShot00.png ├── ScreenShot01.afphoto ├── ScreenShot01.png ├── ScreenShot02.afphoto ├── Tutorials │ ├── Editor0.png │ ├── Editor1.png │ ├── Menu00.png │ ├── Menu01.png │ ├── Menu02_2019.png │ ├── Menu02_2020_00.png │ ├── Menu02_2020_01.png │ └── Menu03.png ├── UnityChanOriginalNormals0.png ├── UnityChanOriginalNormals1.png ├── UnityChanSmoothedNormals0.png └── UnityChanSmoothedNormals1.png ├── ProjectSettings ├── AudioManager.asset ├── ClusterInputManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── NavMeshAreas.asset ├── PackageManagerSettings.asset ├── Physics2DSettings.asset ├── PresetManager.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── TagManager.asset ├── TimeManager.asset ├── UnityConnectSettings.asset ├── VFXManager.asset ├── VersionControlSettings.asset └── XRSettings.asset ├── README.md └── UserSettings └── EditorUserSettings.asset /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DumoeDss/AquaSmoothNormals/HEAD/.gitignore -------------------------------------------------------------------------------- /.vsconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DumoeDss/AquaSmoothNormals/HEAD/.vsconfig -------------------------------------------------------------------------------- /Assets/SmoothNormals.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DumoeDss/AquaSmoothNormals/HEAD/Assets/SmoothNormals.meta -------------------------------------------------------------------------------- /Assets/SmoothNormals/Core.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DumoeDss/AquaSmoothNormals/HEAD/Assets/SmoothNormals/Core.meta -------------------------------------------------------------------------------- /Assets/SmoothNormals/Core/AquaSmoothNormals.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DumoeDss/AquaSmoothNormals/HEAD/Assets/SmoothNormals/Core/AquaSmoothNormals.cs -------------------------------------------------------------------------------- /Assets/SmoothNormals/Core/AquaSmoothNormals.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DumoeDss/AquaSmoothNormals/HEAD/Assets/SmoothNormals/Core/AquaSmoothNormals.cs.meta -------------------------------------------------------------------------------- /Assets/SmoothNormals/Core/AquaSys.SmoothNormals.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DumoeDss/AquaSmoothNormals/HEAD/Assets/SmoothNormals/Core/AquaSys.SmoothNormals.asmdef -------------------------------------------------------------------------------- /Assets/SmoothNormals/Core/AquaSys.SmoothNormals.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DumoeDss/AquaSmoothNormals/HEAD/Assets/SmoothNormals/Core/AquaSys.SmoothNormals.asmdef.meta -------------------------------------------------------------------------------- /Assets/SmoothNormals/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DumoeDss/AquaSmoothNormals/HEAD/Assets/SmoothNormals/Editor.meta -------------------------------------------------------------------------------- /Assets/SmoothNormals/Editor/SmoothNormalsEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DumoeDss/AquaSmoothNormals/HEAD/Assets/SmoothNormals/Editor/SmoothNormalsEditor.cs -------------------------------------------------------------------------------- /Assets/SmoothNormals/Editor/SmoothNormalsEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DumoeDss/AquaSmoothNormals/HEAD/Assets/SmoothNormals/Editor/SmoothNormalsEditor.cs.meta -------------------------------------------------------------------------------- /Assets/SmoothNormals/Editor/SmoothNormalsMeshImporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DumoeDss/AquaSmoothNormals/HEAD/Assets/SmoothNormals/Editor/SmoothNormalsMeshImporter.cs -------------------------------------------------------------------------------- /Assets/SmoothNormals/Editor/SmoothNormalsMeshImporter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DumoeDss/AquaSmoothNormals/HEAD/Assets/SmoothNormals/Editor/SmoothNormalsMeshImporter.cs.meta -------------------------------------------------------------------------------- /Assets/SmoothNormals/Samples.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DumoeDss/AquaSmoothNormals/HEAD/Assets/SmoothNormals/Samples.meta -------------------------------------------------------------------------------- /Assets/SmoothNormals/Samples/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DumoeDss/AquaSmoothNormals/HEAD/Assets/SmoothNormals/Samples/Materials.meta -------------------------------------------------------------------------------- /Assets/SmoothNormals/Samples/Materials/Cube.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DumoeDss/AquaSmoothNormals/HEAD/Assets/SmoothNormals/Samples/Materials/Cube.mat -------------------------------------------------------------------------------- /Assets/SmoothNormals/Samples/Materials/Cube.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DumoeDss/AquaSmoothNormals/HEAD/Assets/SmoothNormals/Samples/Materials/Cube.mat.meta -------------------------------------------------------------------------------- /Assets/SmoothNormals/Samples/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DumoeDss/AquaSmoothNormals/HEAD/Assets/SmoothNormals/Samples/Scenes.meta -------------------------------------------------------------------------------- /Assets/SmoothNormals/Samples/Scenes/SampleScene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DumoeDss/AquaSmoothNormals/HEAD/Assets/SmoothNormals/Samples/Scenes/SampleScene.unity -------------------------------------------------------------------------------- /Assets/SmoothNormals/Samples/Scenes/SampleScene.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DumoeDss/AquaSmoothNormals/HEAD/Assets/SmoothNormals/Samples/Scenes/SampleScene.unity.meta -------------------------------------------------------------------------------- /Assets/SmoothNormals/Samples/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DumoeDss/AquaSmoothNormals/HEAD/Assets/SmoothNormals/Samples/Scripts.meta -------------------------------------------------------------------------------- /Assets/SmoothNormals/Samples/Scripts/FreeCam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DumoeDss/AquaSmoothNormals/HEAD/Assets/SmoothNormals/Samples/Scripts/FreeCam.cs -------------------------------------------------------------------------------- /Assets/SmoothNormals/Samples/Scripts/FreeCam.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DumoeDss/AquaSmoothNormals/HEAD/Assets/SmoothNormals/Samples/Scripts/FreeCam.cs.meta -------------------------------------------------------------------------------- /Assets/SmoothNormals/Samples/Scripts/SampleManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DumoeDss/AquaSmoothNormals/HEAD/Assets/SmoothNormals/Samples/Scripts/SampleManager.cs -------------------------------------------------------------------------------- /Assets/SmoothNormals/Samples/Scripts/SampleManager.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DumoeDss/AquaSmoothNormals/HEAD/Assets/SmoothNormals/Samples/Scripts/SampleManager.cs.meta -------------------------------------------------------------------------------- /Assets/SmoothNormals/Samples/Shaders.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DumoeDss/AquaSmoothNormals/HEAD/Assets/SmoothNormals/Samples/Shaders.meta -------------------------------------------------------------------------------- /Assets/SmoothNormals/Samples/Shaders/SimpleOutline.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DumoeDss/AquaSmoothNormals/HEAD/Assets/SmoothNormals/Samples/Shaders/SimpleOutline.shader -------------------------------------------------------------------------------- /Assets/SmoothNormals/Samples/Shaders/SimpleOutline.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DumoeDss/AquaSmoothNormals/HEAD/Assets/SmoothNormals/Samples/Shaders/SimpleOutline.shader.meta -------------------------------------------------------------------------------- /Assets/SmoothNormals/Samples/Shaders/URP.unitypackage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DumoeDss/AquaSmoothNormals/HEAD/Assets/SmoothNormals/Samples/Shaders/URP.unitypackage -------------------------------------------------------------------------------- /Assets/SmoothNormals/Samples/Shaders/URP.unitypackage.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DumoeDss/AquaSmoothNormals/HEAD/Assets/SmoothNormals/Samples/Shaders/URP.unitypackage.meta -------------------------------------------------------------------------------- /Assets/SmoothNormals/Samples/Third.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DumoeDss/AquaSmoothNormals/HEAD/Assets/SmoothNormals/Samples/Third.meta -------------------------------------------------------------------------------- /Assets/SmoothNormals/Samples/Third/UnityChan.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DumoeDss/AquaSmoothNormals/HEAD/Assets/SmoothNormals/Samples/Third/UnityChan.meta -------------------------------------------------------------------------------- /Assets/SmoothNormals/Samples/Third/UnityChan/SD_unitychan.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DumoeDss/AquaSmoothNormals/HEAD/Assets/SmoothNormals/Samples/Third/UnityChan/SD_unitychan.meta -------------------------------------------------------------------------------- /Assets/SmoothNormals/Samples/Third/UnityChan/SD_unitychan/Animations.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DumoeDss/AquaSmoothNormals/HEAD/Assets/SmoothNormals/Samples/Third/UnityChan/SD_unitychan/Animations.meta -------------------------------------------------------------------------------- /Assets/SmoothNormals/Samples/Third/UnityChan/SD_unitychan/Animations/SD_unitychan_motion_humanoid.controller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DumoeDss/AquaSmoothNormals/HEAD/Assets/SmoothNormals/Samples/Third/UnityChan/SD_unitychan/Animations/SD_unitychan_motion_humanoid.controller -------------------------------------------------------------------------------- /Assets/SmoothNormals/Samples/Third/UnityChan/SD_unitychan/Animations/SD_unitychan_motion_humanoid.controller.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DumoeDss/AquaSmoothNormals/HEAD/Assets/SmoothNormals/Samples/Third/UnityChan/SD_unitychan/Animations/SD_unitychan_motion_humanoid.controller.meta -------------------------------------------------------------------------------- /Assets/SmoothNormals/Samples/Third/UnityChan/SD_unitychan/Animations/SD_unitychan_motion_humanoid.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DumoeDss/AquaSmoothNormals/HEAD/Assets/SmoothNormals/Samples/Third/UnityChan/SD_unitychan/Animations/SD_unitychan_motion_humanoid.fbx -------------------------------------------------------------------------------- /Assets/SmoothNormals/Samples/Third/UnityChan/SD_unitychan/Animations/SD_unitychan_motion_humanoid.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DumoeDss/AquaSmoothNormals/HEAD/Assets/SmoothNormals/Samples/Third/UnityChan/SD_unitychan/Animations/SD_unitychan_motion_humanoid.fbx.meta -------------------------------------------------------------------------------- /Assets/SmoothNormals/Samples/Third/UnityChan/SD_unitychan/Models.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DumoeDss/AquaSmoothNormals/HEAD/Assets/SmoothNormals/Samples/Third/UnityChan/SD_unitychan/Models.meta -------------------------------------------------------------------------------- /Assets/SmoothNormals/Samples/Third/UnityChan/SD_unitychan/Models/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DumoeDss/AquaSmoothNormals/HEAD/Assets/SmoothNormals/Samples/Third/UnityChan/SD_unitychan/Models/Materials.meta -------------------------------------------------------------------------------- /Assets/SmoothNormals/Samples/Third/UnityChan/SD_unitychan/Models/Materials/def_mat.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DumoeDss/AquaSmoothNormals/HEAD/Assets/SmoothNormals/Samples/Third/UnityChan/SD_unitychan/Models/Materials/def_mat.mat -------------------------------------------------------------------------------- /Assets/SmoothNormals/Samples/Third/UnityChan/SD_unitychan/Models/Materials/def_mat.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DumoeDss/AquaSmoothNormals/HEAD/Assets/SmoothNormals/Samples/Third/UnityChan/SD_unitychan/Models/Materials/def_mat.mat.meta -------------------------------------------------------------------------------- /Assets/SmoothNormals/Samples/Third/UnityChan/SD_unitychan/Models/SD_unitychan_humanoid.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DumoeDss/AquaSmoothNormals/HEAD/Assets/SmoothNormals/Samples/Third/UnityChan/SD_unitychan/Models/SD_unitychan_humanoid.fbx -------------------------------------------------------------------------------- /Assets/SmoothNormals/Samples/Third/UnityChan/SD_unitychan/Models/SD_unitychan_humanoid.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DumoeDss/AquaSmoothNormals/HEAD/Assets/SmoothNormals/Samples/Third/UnityChan/SD_unitychan/Models/SD_unitychan_humanoid.fbx.meta -------------------------------------------------------------------------------- /Assets/SmoothNormals/Samples/Third/UnityChan/SD_unitychan/Models/utc_all2_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DumoeDss/AquaSmoothNormals/HEAD/Assets/SmoothNormals/Samples/Third/UnityChan/SD_unitychan/Models/utc_all2_light.png -------------------------------------------------------------------------------- /Assets/SmoothNormals/Samples/Third/UnityChan/SD_unitychan/Models/utc_all2_light.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DumoeDss/AquaSmoothNormals/HEAD/Assets/SmoothNormals/Samples/Third/UnityChan/SD_unitychan/Models/utc_all2_light.png.meta -------------------------------------------------------------------------------- /Assets/SmoothNormals/Samples/Third/UnityChan/SD_unitychan/Prefabs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DumoeDss/AquaSmoothNormals/HEAD/Assets/SmoothNormals/Samples/Third/UnityChan/SD_unitychan/Prefabs.meta -------------------------------------------------------------------------------- /Assets/SmoothNormals/Samples/Third/UnityChan/SD_unitychan/Prefabs/SD_unitychan_humanoid.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DumoeDss/AquaSmoothNormals/HEAD/Assets/SmoothNormals/Samples/Third/UnityChan/SD_unitychan/Prefabs/SD_unitychan_humanoid.prefab -------------------------------------------------------------------------------- /Assets/SmoothNormals/Samples/Third/UnityChan/SD_unitychan/Prefabs/SD_unitychan_humanoid.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DumoeDss/AquaSmoothNormals/HEAD/Assets/SmoothNormals/Samples/Third/UnityChan/SD_unitychan/Prefabs/SD_unitychan_humanoid.prefab.meta -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DumoeDss/AquaSmoothNormals/HEAD/LICENSE -------------------------------------------------------------------------------- /Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DumoeDss/AquaSmoothNormals/HEAD/Packages/manifest.json -------------------------------------------------------------------------------- /Packages/packages-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DumoeDss/AquaSmoothNormals/HEAD/Packages/packages-lock.json -------------------------------------------------------------------------------- /Pictures/Light_Frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DumoeDss/AquaSmoothNormals/HEAD/Pictures/Light_Frame.png -------------------------------------------------------------------------------- /Pictures/Logo.afphoto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DumoeDss/AquaSmoothNormals/HEAD/Pictures/Logo.afphoto -------------------------------------------------------------------------------- /Pictures/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DumoeDss/AquaSmoothNormals/HEAD/Pictures/Logo.png -------------------------------------------------------------------------------- /Pictures/ScreenShot00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DumoeDss/AquaSmoothNormals/HEAD/Pictures/ScreenShot00.png -------------------------------------------------------------------------------- /Pictures/ScreenShot01.afphoto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DumoeDss/AquaSmoothNormals/HEAD/Pictures/ScreenShot01.afphoto -------------------------------------------------------------------------------- /Pictures/ScreenShot01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DumoeDss/AquaSmoothNormals/HEAD/Pictures/ScreenShot01.png -------------------------------------------------------------------------------- /Pictures/ScreenShot02.afphoto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DumoeDss/AquaSmoothNormals/HEAD/Pictures/ScreenShot02.afphoto -------------------------------------------------------------------------------- /Pictures/Tutorials/Editor0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DumoeDss/AquaSmoothNormals/HEAD/Pictures/Tutorials/Editor0.png -------------------------------------------------------------------------------- /Pictures/Tutorials/Editor1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DumoeDss/AquaSmoothNormals/HEAD/Pictures/Tutorials/Editor1.png -------------------------------------------------------------------------------- /Pictures/Tutorials/Menu00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DumoeDss/AquaSmoothNormals/HEAD/Pictures/Tutorials/Menu00.png -------------------------------------------------------------------------------- /Pictures/Tutorials/Menu01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DumoeDss/AquaSmoothNormals/HEAD/Pictures/Tutorials/Menu01.png -------------------------------------------------------------------------------- /Pictures/Tutorials/Menu02_2019.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DumoeDss/AquaSmoothNormals/HEAD/Pictures/Tutorials/Menu02_2019.png -------------------------------------------------------------------------------- /Pictures/Tutorials/Menu02_2020_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DumoeDss/AquaSmoothNormals/HEAD/Pictures/Tutorials/Menu02_2020_00.png -------------------------------------------------------------------------------- /Pictures/Tutorials/Menu02_2020_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DumoeDss/AquaSmoothNormals/HEAD/Pictures/Tutorials/Menu02_2020_01.png -------------------------------------------------------------------------------- /Pictures/Tutorials/Menu03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DumoeDss/AquaSmoothNormals/HEAD/Pictures/Tutorials/Menu03.png -------------------------------------------------------------------------------- /Pictures/UnityChanOriginalNormals0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DumoeDss/AquaSmoothNormals/HEAD/Pictures/UnityChanOriginalNormals0.png -------------------------------------------------------------------------------- /Pictures/UnityChanOriginalNormals1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DumoeDss/AquaSmoothNormals/HEAD/Pictures/UnityChanOriginalNormals1.png -------------------------------------------------------------------------------- /Pictures/UnityChanSmoothedNormals0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DumoeDss/AquaSmoothNormals/HEAD/Pictures/UnityChanSmoothedNormals0.png -------------------------------------------------------------------------------- /Pictures/UnityChanSmoothedNormals1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DumoeDss/AquaSmoothNormals/HEAD/Pictures/UnityChanSmoothedNormals1.png -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DumoeDss/AquaSmoothNormals/HEAD/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DumoeDss/AquaSmoothNormals/HEAD/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DumoeDss/AquaSmoothNormals/HEAD/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DumoeDss/AquaSmoothNormals/HEAD/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DumoeDss/AquaSmoothNormals/HEAD/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DumoeDss/AquaSmoothNormals/HEAD/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DumoeDss/AquaSmoothNormals/HEAD/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DumoeDss/AquaSmoothNormals/HEAD/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /ProjectSettings/PackageManagerSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DumoeDss/AquaSmoothNormals/HEAD/ProjectSettings/PackageManagerSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DumoeDss/AquaSmoothNormals/HEAD/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DumoeDss/AquaSmoothNormals/HEAD/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DumoeDss/AquaSmoothNormals/HEAD/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DumoeDss/AquaSmoothNormals/HEAD/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DumoeDss/AquaSmoothNormals/HEAD/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DumoeDss/AquaSmoothNormals/HEAD/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DumoeDss/AquaSmoothNormals/HEAD/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DumoeDss/AquaSmoothNormals/HEAD/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DumoeDss/AquaSmoothNormals/HEAD/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /ProjectSettings/VersionControlSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DumoeDss/AquaSmoothNormals/HEAD/ProjectSettings/VersionControlSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DumoeDss/AquaSmoothNormals/HEAD/ProjectSettings/XRSettings.asset -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DumoeDss/AquaSmoothNormals/HEAD/README.md -------------------------------------------------------------------------------- /UserSettings/EditorUserSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DumoeDss/AquaSmoothNormals/HEAD/UserSettings/EditorUserSettings.asset --------------------------------------------------------------------------------