├── .gitignore ├── .vsconfig ├── Assets ├── Materials.meta ├── Materials │ ├── XiaoGong.meta │ └── XiaoGong │ │ ├── XiaoGongBody.mat │ │ ├── XiaoGongBody.mat.meta │ │ ├── XiaoGongDress.mat │ │ ├── XiaoGongDress.mat.meta │ │ ├── XiaoGongFace.mat │ │ ├── XiaoGongFace.mat.meta │ │ ├── XiaoGongHair.mat │ │ └── XiaoGongHair.mat.meta ├── Models.meta ├── Models │ ├── Naganohara Yoimiya.meta │ └── Naganohara Yoimiya │ │ ├── Avatar_Girl_Bow_Yoimiya_Remote (merge).fbx │ │ ├── Avatar_Girl_Bow_Yoimiya_Remote (merge).fbx.meta │ │ ├── Avatar_Girl_Bow_Yoimiya_Tex_Body_Diffuse.png │ │ ├── Avatar_Girl_Bow_Yoimiya_Tex_Body_Diffuse.png.meta │ │ ├── Avatar_Girl_Bow_Yoimiya_Tex_Body_Lightmap.png │ │ ├── Avatar_Girl_Bow_Yoimiya_Tex_Body_Lightmap.png.meta │ │ ├── Avatar_Girl_Bow_Yoimiya_Tex_Body_Shadow_Ramp.png │ │ ├── Avatar_Girl_Bow_Yoimiya_Tex_Body_Shadow_Ramp.png.meta │ │ ├── Avatar_Girl_Bow_Yoimiya_Tex_Face_Diffuse.png │ │ ├── Avatar_Girl_Bow_Yoimiya_Tex_Face_Diffuse.png.meta │ │ ├── Avatar_Girl_Bow_Yoimiya_Tex_Hair_Diffuse.png │ │ ├── Avatar_Girl_Bow_Yoimiya_Tex_Hair_Diffuse.png.meta │ │ ├── Avatar_Girl_Bow_Yoimiya_Tex_Hair_Lightmap.png │ │ ├── Avatar_Girl_Bow_Yoimiya_Tex_Hair_Lightmap.png.meta │ │ ├── Avatar_Girl_Bow_Yoimiya_Tex_Hair_Shadow_Ramp.png │ │ ├── Avatar_Girl_Bow_Yoimiya_Tex_Hair_Shadow_Ramp.png.meta │ │ ├── Avatar_Girl_Tex_FaceLightmap.png │ │ ├── Avatar_Girl_Tex_FaceLightmap.png.meta │ │ ├── Avatar_Tex_Face_Shadow.png │ │ ├── Avatar_Tex_Face_Shadow.png.meta │ │ ├── Avatar_Tex_MetalMap.png │ │ ├── Avatar_Tex_MetalMap.png.meta │ │ ├── Materials.meta │ │ └── Materials │ │ ├── Avatar_Girl_Bow_Yoimiya_Mat_Body.json │ │ ├── Avatar_Girl_Bow_Yoimiya_Mat_Body.json.meta │ │ ├── Avatar_Girl_Bow_Yoimiya_Mat_Dress.json │ │ ├── Avatar_Girl_Bow_Yoimiya_Mat_Dress.json.meta │ │ ├── Avatar_Girl_Bow_Yoimiya_Mat_Face.json │ │ ├── Avatar_Girl_Bow_Yoimiya_Mat_Face.json.meta │ │ ├── Avatar_Girl_Bow_Yoimiya_Mat_Hair.json │ │ └── Avatar_Girl_Bow_Yoimiya_Mat_Hair.json.meta ├── Readme.asset ├── Readme.asset.meta ├── Scenes.meta ├── Scenes │ ├── SampleScene.unity │ └── SampleScene.unity.meta ├── Scripts.meta ├── Scripts │ ├── RotationAvatar.cs │ └── RotationAvatar.cs.meta ├── Settings.meta ├── Settings │ ├── SampleSceneProfile.asset │ ├── SampleSceneProfile.asset.meta │ ├── URP-Balanced-Renderer.asset │ ├── URP-Balanced-Renderer.asset.meta │ ├── URP-Balanced.asset │ ├── URP-Balanced.asset.meta │ ├── URP-HighFidelity-Renderer.asset │ ├── URP-HighFidelity-Renderer.asset.meta │ ├── URP-HighFidelity.asset │ ├── URP-HighFidelity.asset.meta │ ├── URP-Performant-Renderer.asset │ ├── URP-Performant-Renderer.asset.meta │ ├── URP-Performant.asset │ └── URP-Performant.asset.meta ├── Shaders.meta ├── Shaders │ ├── GenshinShader.shader │ └── GenshinShader.shader.meta ├── Textures.meta ├── Textures │ ├── BG.jpg │ └── BG.jpg.meta ├── TutorialInfo.meta ├── TutorialInfo │ ├── Icons.meta │ ├── Icons │ │ ├── URP.png │ │ └── URP.png.meta │ ├── Layout.wlt │ ├── Layout.wlt.meta │ ├── Scripts.meta │ └── Scripts │ │ ├── Editor.meta │ │ ├── Editor │ │ ├── ReadmeEditor.cs │ │ └── ReadmeEditor.cs.meta │ │ ├── Readme.cs │ │ └── Readme.cs.meta ├── UniversalRenderPipelineGlobalSettings.asset └── UniversalRenderPipelineGlobalSettings.asset.meta ├── Packages ├── manifest.json └── packages-lock.json ├── ProjectSettings ├── AudioManager.asset ├── BurstAotSettings_StandaloneWindows.json ├── ClusterInputManager.asset ├── CommonBurstAotSettings.json ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── MemorySettings.asset ├── NavMeshAreas.asset ├── PackageManagerSettings.asset ├── Physics2DSettings.asset ├── PresetManager.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── SceneTemplateSettings.json ├── ShaderGraphSettings.asset ├── TagManager.asset ├── TimeManager.asset ├── URPProjectSettings.asset ├── UnityConnectSettings.asset ├── VFXManager.asset ├── VersionControlSettings.asset └── XRSettings.asset └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/.gitignore -------------------------------------------------------------------------------- /.vsconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/.vsconfig -------------------------------------------------------------------------------- /Assets/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/Assets/Materials.meta -------------------------------------------------------------------------------- /Assets/Materials/XiaoGong.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/Assets/Materials/XiaoGong.meta -------------------------------------------------------------------------------- /Assets/Materials/XiaoGong/XiaoGongBody.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/Assets/Materials/XiaoGong/XiaoGongBody.mat -------------------------------------------------------------------------------- /Assets/Materials/XiaoGong/XiaoGongBody.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/Assets/Materials/XiaoGong/XiaoGongBody.mat.meta -------------------------------------------------------------------------------- /Assets/Materials/XiaoGong/XiaoGongDress.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/Assets/Materials/XiaoGong/XiaoGongDress.mat -------------------------------------------------------------------------------- /Assets/Materials/XiaoGong/XiaoGongDress.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/Assets/Materials/XiaoGong/XiaoGongDress.mat.meta -------------------------------------------------------------------------------- /Assets/Materials/XiaoGong/XiaoGongFace.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/Assets/Materials/XiaoGong/XiaoGongFace.mat -------------------------------------------------------------------------------- /Assets/Materials/XiaoGong/XiaoGongFace.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/Assets/Materials/XiaoGong/XiaoGongFace.mat.meta -------------------------------------------------------------------------------- /Assets/Materials/XiaoGong/XiaoGongHair.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/Assets/Materials/XiaoGong/XiaoGongHair.mat -------------------------------------------------------------------------------- /Assets/Materials/XiaoGong/XiaoGongHair.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/Assets/Materials/XiaoGong/XiaoGongHair.mat.meta -------------------------------------------------------------------------------- /Assets/Models.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/Assets/Models.meta -------------------------------------------------------------------------------- /Assets/Models/Naganohara Yoimiya.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/Assets/Models/Naganohara Yoimiya.meta -------------------------------------------------------------------------------- /Assets/Models/Naganohara Yoimiya/Avatar_Girl_Bow_Yoimiya_Remote (merge).fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/Assets/Models/Naganohara Yoimiya/Avatar_Girl_Bow_Yoimiya_Remote (merge).fbx -------------------------------------------------------------------------------- /Assets/Models/Naganohara Yoimiya/Avatar_Girl_Bow_Yoimiya_Remote (merge).fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/Assets/Models/Naganohara Yoimiya/Avatar_Girl_Bow_Yoimiya_Remote (merge).fbx.meta -------------------------------------------------------------------------------- /Assets/Models/Naganohara Yoimiya/Avatar_Girl_Bow_Yoimiya_Tex_Body_Diffuse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/Assets/Models/Naganohara Yoimiya/Avatar_Girl_Bow_Yoimiya_Tex_Body_Diffuse.png -------------------------------------------------------------------------------- /Assets/Models/Naganohara Yoimiya/Avatar_Girl_Bow_Yoimiya_Tex_Body_Diffuse.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/Assets/Models/Naganohara Yoimiya/Avatar_Girl_Bow_Yoimiya_Tex_Body_Diffuse.png.meta -------------------------------------------------------------------------------- /Assets/Models/Naganohara Yoimiya/Avatar_Girl_Bow_Yoimiya_Tex_Body_Lightmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/Assets/Models/Naganohara Yoimiya/Avatar_Girl_Bow_Yoimiya_Tex_Body_Lightmap.png -------------------------------------------------------------------------------- /Assets/Models/Naganohara Yoimiya/Avatar_Girl_Bow_Yoimiya_Tex_Body_Lightmap.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/Assets/Models/Naganohara Yoimiya/Avatar_Girl_Bow_Yoimiya_Tex_Body_Lightmap.png.meta -------------------------------------------------------------------------------- /Assets/Models/Naganohara Yoimiya/Avatar_Girl_Bow_Yoimiya_Tex_Body_Shadow_Ramp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/Assets/Models/Naganohara Yoimiya/Avatar_Girl_Bow_Yoimiya_Tex_Body_Shadow_Ramp.png -------------------------------------------------------------------------------- /Assets/Models/Naganohara Yoimiya/Avatar_Girl_Bow_Yoimiya_Tex_Body_Shadow_Ramp.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/Assets/Models/Naganohara Yoimiya/Avatar_Girl_Bow_Yoimiya_Tex_Body_Shadow_Ramp.png.meta -------------------------------------------------------------------------------- /Assets/Models/Naganohara Yoimiya/Avatar_Girl_Bow_Yoimiya_Tex_Face_Diffuse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/Assets/Models/Naganohara Yoimiya/Avatar_Girl_Bow_Yoimiya_Tex_Face_Diffuse.png -------------------------------------------------------------------------------- /Assets/Models/Naganohara Yoimiya/Avatar_Girl_Bow_Yoimiya_Tex_Face_Diffuse.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/Assets/Models/Naganohara Yoimiya/Avatar_Girl_Bow_Yoimiya_Tex_Face_Diffuse.png.meta -------------------------------------------------------------------------------- /Assets/Models/Naganohara Yoimiya/Avatar_Girl_Bow_Yoimiya_Tex_Hair_Diffuse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/Assets/Models/Naganohara Yoimiya/Avatar_Girl_Bow_Yoimiya_Tex_Hair_Diffuse.png -------------------------------------------------------------------------------- /Assets/Models/Naganohara Yoimiya/Avatar_Girl_Bow_Yoimiya_Tex_Hair_Diffuse.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/Assets/Models/Naganohara Yoimiya/Avatar_Girl_Bow_Yoimiya_Tex_Hair_Diffuse.png.meta -------------------------------------------------------------------------------- /Assets/Models/Naganohara Yoimiya/Avatar_Girl_Bow_Yoimiya_Tex_Hair_Lightmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/Assets/Models/Naganohara Yoimiya/Avatar_Girl_Bow_Yoimiya_Tex_Hair_Lightmap.png -------------------------------------------------------------------------------- /Assets/Models/Naganohara Yoimiya/Avatar_Girl_Bow_Yoimiya_Tex_Hair_Lightmap.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/Assets/Models/Naganohara Yoimiya/Avatar_Girl_Bow_Yoimiya_Tex_Hair_Lightmap.png.meta -------------------------------------------------------------------------------- /Assets/Models/Naganohara Yoimiya/Avatar_Girl_Bow_Yoimiya_Tex_Hair_Shadow_Ramp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/Assets/Models/Naganohara Yoimiya/Avatar_Girl_Bow_Yoimiya_Tex_Hair_Shadow_Ramp.png -------------------------------------------------------------------------------- /Assets/Models/Naganohara Yoimiya/Avatar_Girl_Bow_Yoimiya_Tex_Hair_Shadow_Ramp.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/Assets/Models/Naganohara Yoimiya/Avatar_Girl_Bow_Yoimiya_Tex_Hair_Shadow_Ramp.png.meta -------------------------------------------------------------------------------- /Assets/Models/Naganohara Yoimiya/Avatar_Girl_Tex_FaceLightmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/Assets/Models/Naganohara Yoimiya/Avatar_Girl_Tex_FaceLightmap.png -------------------------------------------------------------------------------- /Assets/Models/Naganohara Yoimiya/Avatar_Girl_Tex_FaceLightmap.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/Assets/Models/Naganohara Yoimiya/Avatar_Girl_Tex_FaceLightmap.png.meta -------------------------------------------------------------------------------- /Assets/Models/Naganohara Yoimiya/Avatar_Tex_Face_Shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/Assets/Models/Naganohara Yoimiya/Avatar_Tex_Face_Shadow.png -------------------------------------------------------------------------------- /Assets/Models/Naganohara Yoimiya/Avatar_Tex_Face_Shadow.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/Assets/Models/Naganohara Yoimiya/Avatar_Tex_Face_Shadow.png.meta -------------------------------------------------------------------------------- /Assets/Models/Naganohara Yoimiya/Avatar_Tex_MetalMap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/Assets/Models/Naganohara Yoimiya/Avatar_Tex_MetalMap.png -------------------------------------------------------------------------------- /Assets/Models/Naganohara Yoimiya/Avatar_Tex_MetalMap.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/Assets/Models/Naganohara Yoimiya/Avatar_Tex_MetalMap.png.meta -------------------------------------------------------------------------------- /Assets/Models/Naganohara Yoimiya/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/Assets/Models/Naganohara Yoimiya/Materials.meta -------------------------------------------------------------------------------- /Assets/Models/Naganohara Yoimiya/Materials/Avatar_Girl_Bow_Yoimiya_Mat_Body.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/Assets/Models/Naganohara Yoimiya/Materials/Avatar_Girl_Bow_Yoimiya_Mat_Body.json -------------------------------------------------------------------------------- /Assets/Models/Naganohara Yoimiya/Materials/Avatar_Girl_Bow_Yoimiya_Mat_Body.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/Assets/Models/Naganohara Yoimiya/Materials/Avatar_Girl_Bow_Yoimiya_Mat_Body.json.meta -------------------------------------------------------------------------------- /Assets/Models/Naganohara Yoimiya/Materials/Avatar_Girl_Bow_Yoimiya_Mat_Dress.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/Assets/Models/Naganohara Yoimiya/Materials/Avatar_Girl_Bow_Yoimiya_Mat_Dress.json -------------------------------------------------------------------------------- /Assets/Models/Naganohara Yoimiya/Materials/Avatar_Girl_Bow_Yoimiya_Mat_Dress.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/Assets/Models/Naganohara Yoimiya/Materials/Avatar_Girl_Bow_Yoimiya_Mat_Dress.json.meta -------------------------------------------------------------------------------- /Assets/Models/Naganohara Yoimiya/Materials/Avatar_Girl_Bow_Yoimiya_Mat_Face.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/Assets/Models/Naganohara Yoimiya/Materials/Avatar_Girl_Bow_Yoimiya_Mat_Face.json -------------------------------------------------------------------------------- /Assets/Models/Naganohara Yoimiya/Materials/Avatar_Girl_Bow_Yoimiya_Mat_Face.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/Assets/Models/Naganohara Yoimiya/Materials/Avatar_Girl_Bow_Yoimiya_Mat_Face.json.meta -------------------------------------------------------------------------------- /Assets/Models/Naganohara Yoimiya/Materials/Avatar_Girl_Bow_Yoimiya_Mat_Hair.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/Assets/Models/Naganohara Yoimiya/Materials/Avatar_Girl_Bow_Yoimiya_Mat_Hair.json -------------------------------------------------------------------------------- /Assets/Models/Naganohara Yoimiya/Materials/Avatar_Girl_Bow_Yoimiya_Mat_Hair.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/Assets/Models/Naganohara Yoimiya/Materials/Avatar_Girl_Bow_Yoimiya_Mat_Hair.json.meta -------------------------------------------------------------------------------- /Assets/Readme.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/Assets/Readme.asset -------------------------------------------------------------------------------- /Assets/Readme.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/Assets/Readme.asset.meta -------------------------------------------------------------------------------- /Assets/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/Assets/Scenes.meta -------------------------------------------------------------------------------- /Assets/Scenes/SampleScene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/Assets/Scenes/SampleScene.unity -------------------------------------------------------------------------------- /Assets/Scenes/SampleScene.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/Assets/Scenes/SampleScene.unity.meta -------------------------------------------------------------------------------- /Assets/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/Assets/Scripts.meta -------------------------------------------------------------------------------- /Assets/Scripts/RotationAvatar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/Assets/Scripts/RotationAvatar.cs -------------------------------------------------------------------------------- /Assets/Scripts/RotationAvatar.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/Assets/Scripts/RotationAvatar.cs.meta -------------------------------------------------------------------------------- /Assets/Settings.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/Assets/Settings.meta -------------------------------------------------------------------------------- /Assets/Settings/SampleSceneProfile.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/Assets/Settings/SampleSceneProfile.asset -------------------------------------------------------------------------------- /Assets/Settings/SampleSceneProfile.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/Assets/Settings/SampleSceneProfile.asset.meta -------------------------------------------------------------------------------- /Assets/Settings/URP-Balanced-Renderer.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/Assets/Settings/URP-Balanced-Renderer.asset -------------------------------------------------------------------------------- /Assets/Settings/URP-Balanced-Renderer.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/Assets/Settings/URP-Balanced-Renderer.asset.meta -------------------------------------------------------------------------------- /Assets/Settings/URP-Balanced.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/Assets/Settings/URP-Balanced.asset -------------------------------------------------------------------------------- /Assets/Settings/URP-Balanced.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/Assets/Settings/URP-Balanced.asset.meta -------------------------------------------------------------------------------- /Assets/Settings/URP-HighFidelity-Renderer.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/Assets/Settings/URP-HighFidelity-Renderer.asset -------------------------------------------------------------------------------- /Assets/Settings/URP-HighFidelity-Renderer.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/Assets/Settings/URP-HighFidelity-Renderer.asset.meta -------------------------------------------------------------------------------- /Assets/Settings/URP-HighFidelity.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/Assets/Settings/URP-HighFidelity.asset -------------------------------------------------------------------------------- /Assets/Settings/URP-HighFidelity.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/Assets/Settings/URP-HighFidelity.asset.meta -------------------------------------------------------------------------------- /Assets/Settings/URP-Performant-Renderer.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/Assets/Settings/URP-Performant-Renderer.asset -------------------------------------------------------------------------------- /Assets/Settings/URP-Performant-Renderer.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/Assets/Settings/URP-Performant-Renderer.asset.meta -------------------------------------------------------------------------------- /Assets/Settings/URP-Performant.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/Assets/Settings/URP-Performant.asset -------------------------------------------------------------------------------- /Assets/Settings/URP-Performant.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/Assets/Settings/URP-Performant.asset.meta -------------------------------------------------------------------------------- /Assets/Shaders.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/Assets/Shaders.meta -------------------------------------------------------------------------------- /Assets/Shaders/GenshinShader.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/Assets/Shaders/GenshinShader.shader -------------------------------------------------------------------------------- /Assets/Shaders/GenshinShader.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/Assets/Shaders/GenshinShader.shader.meta -------------------------------------------------------------------------------- /Assets/Textures.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/Assets/Textures.meta -------------------------------------------------------------------------------- /Assets/Textures/BG.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/Assets/Textures/BG.jpg -------------------------------------------------------------------------------- /Assets/Textures/BG.jpg.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/Assets/Textures/BG.jpg.meta -------------------------------------------------------------------------------- /Assets/TutorialInfo.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/Assets/TutorialInfo.meta -------------------------------------------------------------------------------- /Assets/TutorialInfo/Icons.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/Assets/TutorialInfo/Icons.meta -------------------------------------------------------------------------------- /Assets/TutorialInfo/Icons/URP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/Assets/TutorialInfo/Icons/URP.png -------------------------------------------------------------------------------- /Assets/TutorialInfo/Icons/URP.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/Assets/TutorialInfo/Icons/URP.png.meta -------------------------------------------------------------------------------- /Assets/TutorialInfo/Layout.wlt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/Assets/TutorialInfo/Layout.wlt -------------------------------------------------------------------------------- /Assets/TutorialInfo/Layout.wlt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/Assets/TutorialInfo/Layout.wlt.meta -------------------------------------------------------------------------------- /Assets/TutorialInfo/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/Assets/TutorialInfo/Scripts.meta -------------------------------------------------------------------------------- /Assets/TutorialInfo/Scripts/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/Assets/TutorialInfo/Scripts/Editor.meta -------------------------------------------------------------------------------- /Assets/TutorialInfo/Scripts/Editor/ReadmeEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/Assets/TutorialInfo/Scripts/Editor/ReadmeEditor.cs -------------------------------------------------------------------------------- /Assets/TutorialInfo/Scripts/Editor/ReadmeEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/Assets/TutorialInfo/Scripts/Editor/ReadmeEditor.cs.meta -------------------------------------------------------------------------------- /Assets/TutorialInfo/Scripts/Readme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/Assets/TutorialInfo/Scripts/Readme.cs -------------------------------------------------------------------------------- /Assets/TutorialInfo/Scripts/Readme.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/Assets/TutorialInfo/Scripts/Readme.cs.meta -------------------------------------------------------------------------------- /Assets/UniversalRenderPipelineGlobalSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/Assets/UniversalRenderPipelineGlobalSettings.asset -------------------------------------------------------------------------------- /Assets/UniversalRenderPipelineGlobalSettings.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/Assets/UniversalRenderPipelineGlobalSettings.asset.meta -------------------------------------------------------------------------------- /Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/Packages/manifest.json -------------------------------------------------------------------------------- /Packages/packages-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/Packages/packages-lock.json -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /ProjectSettings/BurstAotSettings_StandaloneWindows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/ProjectSettings/BurstAotSettings_StandaloneWindows.json -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/CommonBurstAotSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/ProjectSettings/CommonBurstAotSettings.json -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/MemorySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/ProjectSettings/MemorySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /ProjectSettings/PackageManagerSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/ProjectSettings/PackageManagerSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/SceneTemplateSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/ProjectSettings/SceneTemplateSettings.json -------------------------------------------------------------------------------- /ProjectSettings/ShaderGraphSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/ProjectSettings/ShaderGraphSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /ProjectSettings/URPProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/ProjectSettings/URPProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /ProjectSettings/VersionControlSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/ProjectSettings/VersionControlSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/ProjectSettings/XRSettings.asset -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashley-619/Genshin-URP/HEAD/README.md --------------------------------------------------------------------------------