├── .gitignore ├── .vscode ├── launch.json └── settings.json ├── Assets ├── 3rd Party Assets.meta ├── 3rd Party Assets │ ├── Freeui.meta │ ├── Freeui │ │ ├── FreeUI.unity │ │ ├── FreeUI.unity.meta │ │ ├── Main.unity │ │ ├── Main.unity.meta │ │ ├── Set.unity │ │ ├── Set.unity.meta │ │ ├── Stage.unity │ │ ├── Stage.unity.meta │ │ ├── ZOSMA.meta │ │ └── ZOSMA │ │ │ ├── Main.meta │ │ │ ├── Main │ │ │ ├── Back.meta │ │ │ ├── Back │ │ │ │ ├── Background.png │ │ │ │ ├── Background.png.meta │ │ │ │ ├── Foldingpaper.png │ │ │ │ ├── Foldingpaper.png.meta │ │ │ │ ├── FoldingpaperShadow.png │ │ │ │ ├── FoldingpaperShadow.png.meta │ │ │ │ ├── Lefrupside.png │ │ │ │ ├── Lefrupside.png.meta │ │ │ │ ├── RIghtdownside.png │ │ │ │ ├── RIghtdownside.png.meta │ │ │ │ ├── Rightupside.png │ │ │ │ └── Rightupside.png.meta │ │ │ ├── Botton.png │ │ │ ├── Botton.png.meta │ │ │ ├── Coin.png │ │ │ ├── Coin.png.meta │ │ │ ├── Cristal.png │ │ │ ├── Cristal.png.meta │ │ │ ├── Deck.png │ │ │ ├── Deck.png.meta │ │ │ ├── Deckbotton.png │ │ │ ├── Deckbotton.png.meta │ │ │ ├── Decoration.png │ │ │ ├── Decoration.png.meta │ │ │ ├── EXP.png │ │ │ ├── EXP.png.meta │ │ │ ├── Gamebotton.png │ │ │ ├── Gamebotton.png.meta │ │ │ ├── Gamestart.png │ │ │ ├── Gamestart.png.meta │ │ │ ├── Guild.png │ │ │ ├── Guild.png.meta │ │ │ ├── Guildbotton.png │ │ │ ├── Guildbotton.png.meta │ │ │ ├── Incircle.png │ │ │ ├── Incircle.png.meta │ │ │ ├── Item.png │ │ │ ├── Item.png.meta │ │ │ ├── Itembotton.png │ │ │ ├── Itembotton.png.meta │ │ │ ├── LV.png │ │ │ ├── LV.png.meta │ │ │ ├── Nickname.png │ │ │ ├── Nickname.png.meta │ │ │ ├── Outcircle.png │ │ │ ├── Outcircle.png.meta │ │ │ ├── Preferences.png │ │ │ ├── Preferences.png.meta │ │ │ ├── Profile.png │ │ │ ├── Profile.png.meta │ │ │ ├── Quantity.png │ │ │ ├── Quantity.png.meta │ │ │ ├── Quest.png │ │ │ ├── Quest.png.meta │ │ │ ├── Questbotton.png │ │ │ ├── Questbotton.png.meta │ │ │ ├── Rightup.png │ │ │ ├── Rightup.png.meta │ │ │ ├── Shop.png │ │ │ ├── Shop.png.meta │ │ │ ├── Shopbotton.png │ │ │ └── Shopbotton.png.meta │ │ │ ├── Set.meta │ │ │ ├── Set │ │ │ ├── Account.png │ │ │ ├── Account.png.meta │ │ │ ├── Back.png │ │ │ ├── Back.png.meta │ │ │ ├── Black.png │ │ │ ├── Black.png.meta │ │ │ ├── Close.png │ │ │ ├── Close.png.meta │ │ │ ├── Contact.png │ │ │ ├── Contact.png.meta │ │ │ ├── Credit.png │ │ │ ├── Credit.png.meta │ │ │ ├── Decive.png │ │ │ ├── Decive.png.meta │ │ │ ├── Enter.png │ │ │ ├── Enter.png.meta │ │ │ ├── Icon.png │ │ │ ├── Icon.png.meta │ │ │ ├── Language.png │ │ │ ├── Language.png.meta │ │ │ ├── Line1.png │ │ │ ├── Line1.png.meta │ │ │ ├── Line2.png │ │ │ ├── Line2.png.meta │ │ │ ├── Logout.png │ │ │ ├── Logout.png.meta │ │ │ ├── Namebotton01.png │ │ │ ├── Namebotton01.png.meta │ │ │ ├── Namebotton02.png │ │ │ ├── Namebotton02.png.meta │ │ │ ├── Resolution.png │ │ │ ├── Resolution.png.meta │ │ │ ├── Secession.png │ │ │ ├── Secession.png.meta │ │ │ ├── Terms.png │ │ │ ├── Terms.png.meta │ │ │ ├── Username.png │ │ │ ├── Username.png.meta │ │ │ ├── Volume.png │ │ │ └── Volume.png.meta │ │ │ ├── Stage.meta │ │ │ ├── Stage │ │ │ ├── Back.meta │ │ │ ├── Back │ │ │ │ ├── Background.png │ │ │ │ ├── Background.png.meta │ │ │ │ ├── Foldingpaper.png │ │ │ │ ├── Foldingpaper.png.meta │ │ │ │ ├── FoldingpaperShadow.png │ │ │ │ ├── FoldingpaperShadow.png.meta │ │ │ │ ├── Lefrupside.png │ │ │ │ ├── Lefrupside.png.meta │ │ │ │ ├── RIghtdownside.png │ │ │ │ ├── RIghtdownside.png.meta │ │ │ │ ├── Rightupside.png │ │ │ │ └── Rightupside.png.meta │ │ │ ├── Backbotton.png │ │ │ ├── Backbotton.png.meta │ │ │ ├── Card.png │ │ │ ├── Card.png.meta │ │ │ ├── Cardline.png │ │ │ ├── Cardline.png.meta │ │ │ ├── Cristalblue.png │ │ │ ├── Cristalblue.png.meta │ │ │ ├── Cristalorange.png │ │ │ ├── Cristalorange.png.meta │ │ │ ├── Cristalred.png │ │ │ ├── Cristalred.png.meta │ │ │ ├── Gamebotton.png │ │ │ ├── Gamebotton.png.meta │ │ │ ├── Gameplay.png │ │ │ ├── Gameplay.png.meta │ │ │ ├── Stage.png │ │ │ ├── Stage.png.meta │ │ │ ├── Stageexplanation.png │ │ │ ├── Stageexplanation.png.meta │ │ │ ├── Stageexplanation__.png │ │ │ ├── Stageexplanation__.png.meta │ │ │ ├── Stagename.png │ │ │ └── Stagename.png.meta │ │ │ ├── Start.meta │ │ │ └── Start │ │ │ ├── Touchtoscreen.png │ │ │ └── Touchtoscreen.png.meta │ ├── Sci-Fi UI.meta │ └── Sci-Fi UI │ │ ├── Demo.unity │ │ ├── Demo.unity.meta │ │ ├── Demo_Assets.meta │ │ ├── Demo_Assets │ │ ├── background.meta │ │ ├── background │ │ │ ├── Materials.meta │ │ │ ├── Materials │ │ │ │ ├── Space.tga.mat │ │ │ │ └── Space.tga.mat.meta │ │ │ ├── Space.tga.jpg │ │ │ └── Space.tga.jpg.meta │ │ ├── scripts.meta │ │ └── scripts │ │ │ ├── GUI_Demo.cs │ │ │ └── GUI_Demo.cs.meta │ │ ├── _SciFi_GUISkin_.meta │ │ └── _SciFi_GUISkin_ │ │ ├── Bonus_Assets.meta │ │ ├── Bonus_Assets │ │ ├── arrows.meta │ │ ├── arrows │ │ │ ├── arrow1_left.png │ │ │ ├── arrow1_left.png.meta │ │ │ ├── arrow1_right.png │ │ │ ├── arrow1_right.png.meta │ │ │ ├── arrow_left.png │ │ │ ├── arrow_left.png.meta │ │ │ ├── arrow_right.png │ │ │ ├── arrow_right.png.meta │ │ │ ├── back_arrow.png │ │ │ ├── back_arrow.png.meta │ │ │ ├── long_arrow_left.png │ │ │ ├── long_arrow_left.png.meta │ │ │ ├── long_arrow_right.png │ │ │ ├── long_arrow_right.png.meta │ │ │ ├── plus.png │ │ │ └── plus.png.meta │ │ ├── bars.meta │ │ └── bars │ │ │ ├── background_bar.png │ │ │ ├── background_bar.png.meta │ │ │ ├── background_bar1.png │ │ │ ├── background_bar1.png.meta │ │ │ ├── bar_purple.png │ │ │ ├── bar_purple.png.meta │ │ │ ├── bar_purple1.png │ │ │ ├── bar_purple1.png.meta │ │ │ ├── bar_red.png │ │ │ ├── bar_red.png.meta │ │ │ ├── bar_red1.png │ │ │ ├── bar_red1.png.meta │ │ │ ├── progress_bar.png │ │ │ ├── progress_bar.png.meta │ │ │ ├── progress_bar1.png │ │ │ └── progress_bar1.png.meta │ │ ├── SciFi_Skin.guiskin │ │ ├── SciFi_Skin.guiskin.meta │ │ ├── Skin_Assets.meta │ │ ├── Skin_Assets │ │ ├── bars.meta │ │ ├── bars │ │ │ ├── bar_blue.png │ │ │ ├── bar_blue.png.meta │ │ │ ├── bar_blue1.png │ │ │ ├── bar_blue1.png.meta │ │ │ ├── bar_green.png │ │ │ ├── bar_green.png.meta │ │ │ ├── bar_green1.png │ │ │ ├── bar_green1.png.meta │ │ │ ├── progress_bar_background.png │ │ │ ├── progress_bar_background.png.meta │ │ │ ├── progress_bar_background1.png │ │ │ └── progress_bar_background1.png.meta │ │ ├── buttons.meta │ │ ├── buttons │ │ │ ├── bullets.png │ │ │ ├── bullets.png.meta │ │ │ ├── button1.png │ │ │ ├── button1.png.meta │ │ │ ├── button_active.png │ │ │ ├── button_active.png.meta │ │ │ ├── button_pushed.png │ │ │ ├── button_pushed.png.meta │ │ │ ├── pause.png │ │ │ ├── pause.png.meta │ │ │ ├── rocket.png │ │ │ └── rocket.png.meta │ │ ├── font.meta │ │ ├── font │ │ │ ├── zekton free.ttf │ │ │ └── zekton free.ttf.meta │ │ ├── joystick.meta │ │ ├── joystick │ │ │ ├── joystick.png │ │ │ ├── joystick.png.meta │ │ │ ├── joystick_back.png │ │ │ └── joystick_back.png.meta │ │ ├── window.meta │ │ └── window │ │ │ ├── window_transparent.png │ │ │ ├── window_transparent.png.meta │ │ │ ├── window_transparent1.png │ │ │ └── window_transparent1.png.meta │ │ ├── atlas.png │ │ └── atlas.png.meta ├── Benchmark.meta ├── Benchmark │ ├── Default Camera Stacking.meta │ ├── Default Camera Stacking │ │ ├── Default Stacking.unity │ │ └── Default Stacking.unity.meta │ ├── Optimized Camera Stacking.meta │ └── Optimized Camera Stacking │ │ ├── Optimized Stacking.unity │ │ └── Optimized Stacking.unity.meta ├── Compositor.meta ├── Compositor │ ├── DefaultCompositionGraph.asset │ ├── DefaultCompositionGraph.asset.meta │ ├── DefaultCompositionGraph.shadergraph │ └── DefaultCompositionGraph.shadergraph.meta ├── HDRPDefaultResources.meta ├── HDRPDefaultResources │ ├── DefaultLookDevProfile.asset │ ├── DefaultLookDevProfile.asset.meta │ ├── DefaultSettingsVolumeProfile.asset │ ├── DefaultSettingsVolumeProfile.asset.meta │ ├── FoliageDiffusionProfile.asset │ ├── FoliageDiffusionProfile.asset.meta │ ├── HDRenderPipelineAsset.asset │ ├── HDRenderPipelineAsset.asset.meta │ ├── HDRenderPipelineGlobalSettings.asset │ ├── HDRenderPipelineGlobalSettings.asset.meta │ ├── SkinDiffusionProfile.asset │ └── SkinDiffusionProfile.asset.meta ├── Scenes.meta ├── Scenes │ ├── Custom Compositing.meta │ ├── Custom Compositing.unity │ ├── Custom Compositing.unity.meta │ ├── Custom Compositing │ │ ├── Compositing Tests.shader │ │ ├── Compositing Tests.shader.meta │ │ ├── HDRP UI Camera_Compositing Tests.mat │ │ ├── HDRP UI Camera_Compositing Tests.mat.meta │ │ ├── Sky and Fog Settings Profile.asset │ │ └── Sky and Fog Settings Profile.asset.meta │ ├── Fantasy UI.meta │ ├── Fantasy UI.unity │ ├── Fantasy UI.unity.meta │ ├── Fantasy UI │ │ ├── Sky and Fog Settings Profile.asset │ │ └── Sky and Fog Settings Profile.asset.meta │ ├── No TAA + MSAA for UI.unity │ ├── No TAA + MSAA for UI.unity.meta │ ├── RenderTexture In UI.meta │ ├── RenderTexture In UI.unity │ ├── RenderTexture In UI.unity.meta │ ├── RenderTexture In UI │ │ ├── Post Process Layer Profile.asset │ │ ├── Post Process Layer Profile.asset.meta │ │ ├── Scene.renderTexture │ │ ├── Scene.renderTexture.meta │ │ ├── Sky and Fog Settings Profile.asset │ │ └── Sky and Fog Settings Profile.asset.meta │ ├── Simple.meta │ ├── Simple.unity │ ├── Simple.unity.meta │ ├── Simple │ │ ├── SkyandFogSettingsProfile.asset │ │ └── SkyandFogSettingsProfile.asset.meta │ ├── SplitScreen.unity │ ├── SplitScreen.unity.meta │ ├── UI To RenderTexture.meta │ ├── UI To RenderTexture.unity │ ├── UI To RenderTexture.unity.meta │ └── UI To RenderTexture │ │ ├── Post Process Layer Profile.asset │ │ ├── Post Process Layer Profile.asset.meta │ │ ├── Sky and Fog Settings Profile.asset │ │ ├── Sky and Fog Settings Profile.asset.meta │ │ ├── UI.renderTexture │ │ └── UI.renderTexture.meta ├── TextMesh Pro.meta ├── TextMesh Pro │ ├── Documentation.meta │ ├── Documentation │ │ ├── TextMesh Pro User Guide 2016.pdf │ │ └── TextMesh Pro User Guide 2016.pdf.meta │ ├── Fonts.meta │ ├── Fonts │ │ ├── LiberationSans - OFL.txt │ │ ├── LiberationSans - OFL.txt.meta │ │ ├── LiberationSans.ttf │ │ └── LiberationSans.ttf.meta │ ├── Resources.meta │ ├── Resources │ │ ├── Fonts & Materials.meta │ │ ├── Fonts & Materials │ │ │ ├── LiberationSans SDF - Drop Shadow.mat │ │ │ ├── LiberationSans SDF - Drop Shadow.mat.meta │ │ │ ├── LiberationSans SDF - Fallback.asset │ │ │ ├── LiberationSans SDF - Fallback.asset.meta │ │ │ ├── LiberationSans SDF - Outline.mat │ │ │ ├── LiberationSans SDF - Outline.mat.meta │ │ │ ├── LiberationSans SDF.asset │ │ │ └── LiberationSans SDF.asset.meta │ │ ├── LineBreaking Following Characters.txt │ │ ├── LineBreaking Following Characters.txt.meta │ │ ├── LineBreaking Leading Characters.txt │ │ ├── LineBreaking Leading Characters.txt.meta │ │ ├── Sprite Assets.meta │ │ ├── Sprite Assets │ │ │ ├── EmojiOne.asset │ │ │ └── EmojiOne.asset.meta │ │ ├── Style Sheets.meta │ │ ├── Style Sheets │ │ │ ├── Default Style Sheet.asset │ │ │ └── Default Style Sheet.asset.meta │ │ ├── TMP Settings.asset │ │ └── TMP Settings.asset.meta │ ├── Shaders.meta │ ├── Shaders │ │ ├── TMP_Bitmap-Custom-Atlas.shader │ │ ├── TMP_Bitmap-Custom-Atlas.shader.meta │ │ ├── TMP_Bitmap-Mobile.shader │ │ ├── TMP_Bitmap-Mobile.shader.meta │ │ ├── TMP_Bitmap.shader │ │ ├── TMP_Bitmap.shader.meta │ │ ├── TMP_SDF Overlay.shader │ │ ├── TMP_SDF Overlay.shader.meta │ │ ├── TMP_SDF SSD.shader │ │ ├── TMP_SDF SSD.shader.meta │ │ ├── TMP_SDF-Mobile Masking.shader │ │ ├── TMP_SDF-Mobile Masking.shader.meta │ │ ├── TMP_SDF-Mobile Overlay.shader │ │ ├── TMP_SDF-Mobile Overlay.shader.meta │ │ ├── TMP_SDF-Mobile SSD.shader │ │ ├── TMP_SDF-Mobile SSD.shader.meta │ │ ├── TMP_SDF-Mobile.shader │ │ ├── TMP_SDF-Mobile.shader.meta │ │ ├── TMP_SDF-Surface-Mobile.shader │ │ ├── TMP_SDF-Surface-Mobile.shader.meta │ │ ├── TMP_SDF-Surface.shader │ │ ├── TMP_SDF-Surface.shader.meta │ │ ├── TMP_SDF.shader │ │ ├── TMP_SDF.shader.meta │ │ ├── TMP_Sprite.shader │ │ ├── TMP_Sprite.shader.meta │ │ ├── TMPro.cginc │ │ ├── TMPro.cginc.meta │ │ ├── TMPro_Mobile.cginc │ │ ├── TMPro_Mobile.cginc.meta │ │ ├── TMPro_Properties.cginc │ │ ├── TMPro_Properties.cginc.meta │ │ ├── TMPro_Surface.cginc │ │ └── TMPro_Surface.cginc.meta │ ├── Sprites.meta │ └── Sprites │ │ ├── EmojiOne Attribution.txt │ │ ├── EmojiOne Attribution.txt.meta │ │ ├── EmojiOne.json │ │ ├── EmojiOne.json.meta │ │ ├── EmojiOne.png │ │ └── EmojiOne.png.meta ├── XR.meta ├── XR │ ├── Loaders.meta │ ├── Loaders │ │ ├── Mock HMD Loader.asset │ │ └── Mock HMD Loader.asset.meta │ ├── Settings.meta │ ├── Settings │ │ ├── Mock HMD Build Settings.asset │ │ └── Mock HMD Build Settings.asset.meta │ ├── XRGeneralSettings.asset │ └── XRGeneralSettings.asset.meta ├── com.alelievr.hdrp-ui-camera-stacking.meta └── com.alelievr.hdrp-ui-camera-stacking │ ├── Editor.meta │ ├── Editor │ ├── HDCameraUIEditor.cs │ ├── HDCameraUIEditor.cs.meta │ ├── com.alelievr.hdrp-ui-camera-stacking.editor.asmdef │ └── com.alelievr.hdrp-ui-camera-stacking.editor.asmdef.meta │ ├── LICENSE │ ├── LICENSE.meta │ ├── README.md │ ├── README.md.meta │ ├── Runtime.meta │ ├── Runtime │ ├── CameraStackingCompositing.cs │ ├── CameraStackingCompositing.cs.meta │ ├── HDCameraUI.cs │ ├── HDCameraUI.cs.meta │ ├── HDRP Injection asmref.asmref │ ├── HDRP Injection asmref.asmref.meta │ ├── HDRP UI Compositing.shader │ ├── HDRP UI Compositing.shader.meta │ ├── HDRPExtension.cs │ ├── HDRPExtension.cs.meta │ ├── PackageInfo.cs │ ├── PackageInfo.cs.meta │ ├── UI Transparency Background Init.shader │ └── UI Transparency Background Init.shader.meta │ ├── package.json │ └── package.json.meta ├── LICENSE ├── Packages ├── manifest.json └── packages-lock.json ├── ProjectSettings ├── AudioManager.asset ├── ClusterInputManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── HDRPProjectSettings.asset ├── InputManager.asset ├── MemorySettings.asset ├── MultiplayerManager.asset ├── NavMeshAreas.asset ├── PS5Settings.json ├── PackageManagerSettings.asset ├── Physics2DSettings.asset ├── PresetManager.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── SceneTemplateSettings.json ├── ShaderGraphSettings.asset ├── TagManager.asset ├── TimeManager.asset ├── UnityConnectSettings.asset ├── VFXManager.asset ├── VersionControlSettings.asset ├── XRPackageSettings.asset └── XRSettings.asset ├── README.md └── UserSettings ├── EditorUserSettings.asset ├── HDRPUserSettings.asset ├── Layouts └── default-2022.dwlt └── Search.settings /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Assets/3rd Party Assets.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/FreeUI.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/FreeUI.unity -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/FreeUI.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/FreeUI.unity.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/Main.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/Main.unity -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/Main.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/Main.unity.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/Set.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/Set.unity -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/Set.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/Set.unity.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/Stage.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/Stage.unity -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/Stage.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/Stage.unity.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Main.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Main.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Main/Back.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Main/Back.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Main/Back/Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Main/Back/Background.png -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Main/Back/Background.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Main/Back/Background.png.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Main/Back/Foldingpaper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Main/Back/Foldingpaper.png -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Main/Back/Foldingpaper.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Main/Back/Foldingpaper.png.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Main/Back/FoldingpaperShadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Main/Back/FoldingpaperShadow.png -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Main/Back/FoldingpaperShadow.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Main/Back/FoldingpaperShadow.png.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Main/Back/Lefrupside.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Main/Back/Lefrupside.png -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Main/Back/Lefrupside.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Main/Back/Lefrupside.png.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Main/Back/RIghtdownside.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Main/Back/RIghtdownside.png -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Main/Back/RIghtdownside.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Main/Back/RIghtdownside.png.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Main/Back/Rightupside.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Main/Back/Rightupside.png -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Main/Back/Rightupside.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Main/Back/Rightupside.png.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Main/Botton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Main/Botton.png -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Main/Botton.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Main/Botton.png.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Main/Coin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Main/Coin.png -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Main/Coin.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Main/Coin.png.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Main/Cristal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Main/Cristal.png -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Main/Cristal.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Main/Cristal.png.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Main/Deck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Main/Deck.png -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Main/Deck.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Main/Deck.png.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Main/Deckbotton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Main/Deckbotton.png -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Main/Deckbotton.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Main/Deckbotton.png.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Main/Decoration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Main/Decoration.png -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Main/Decoration.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Main/Decoration.png.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Main/EXP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Main/EXP.png -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Main/EXP.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Main/EXP.png.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Main/Gamebotton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Main/Gamebotton.png -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Main/Gamebotton.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Main/Gamebotton.png.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Main/Gamestart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Main/Gamestart.png -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Main/Gamestart.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Main/Gamestart.png.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Main/Guild.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Main/Guild.png -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Main/Guild.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Main/Guild.png.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Main/Guildbotton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Main/Guildbotton.png -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Main/Guildbotton.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Main/Guildbotton.png.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Main/Incircle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Main/Incircle.png -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Main/Incircle.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Main/Incircle.png.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Main/Item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Main/Item.png -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Main/Item.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Main/Item.png.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Main/Itembotton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Main/Itembotton.png -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Main/Itembotton.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Main/Itembotton.png.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Main/LV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Main/LV.png -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Main/LV.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Main/LV.png.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Main/Nickname.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Main/Nickname.png -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Main/Nickname.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Main/Nickname.png.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Main/Outcircle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Main/Outcircle.png -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Main/Outcircle.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Main/Outcircle.png.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Main/Preferences.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Main/Preferences.png -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Main/Preferences.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Main/Preferences.png.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Main/Profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Main/Profile.png -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Main/Profile.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Main/Profile.png.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Main/Quantity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Main/Quantity.png -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Main/Quantity.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Main/Quantity.png.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Main/Quest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Main/Quest.png -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Main/Quest.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Main/Quest.png.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Main/Questbotton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Main/Questbotton.png -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Main/Questbotton.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Main/Questbotton.png.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Main/Rightup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Main/Rightup.png -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Main/Rightup.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Main/Rightup.png.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Main/Shop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Main/Shop.png -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Main/Shop.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Main/Shop.png.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Main/Shopbotton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Main/Shopbotton.png -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Main/Shopbotton.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Main/Shopbotton.png.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Set.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Set.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Set/Account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Set/Account.png -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Set/Account.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Set/Account.png.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Set/Back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Set/Back.png -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Set/Back.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Set/Back.png.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Set/Black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Set/Black.png -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Set/Black.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Set/Black.png.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Set/Close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Set/Close.png -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Set/Close.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Set/Close.png.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Set/Contact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Set/Contact.png -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Set/Contact.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Set/Contact.png.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Set/Credit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Set/Credit.png -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Set/Credit.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Set/Credit.png.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Set/Decive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Set/Decive.png -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Set/Decive.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Set/Decive.png.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Set/Enter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Set/Enter.png -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Set/Enter.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Set/Enter.png.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Set/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Set/Icon.png -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Set/Icon.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Set/Icon.png.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Set/Language.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Set/Language.png -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Set/Language.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Set/Language.png.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Set/Line1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Set/Line1.png -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Set/Line1.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Set/Line1.png.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Set/Line2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Set/Line2.png -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Set/Line2.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Set/Line2.png.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Set/Logout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Set/Logout.png -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Set/Logout.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Set/Logout.png.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Set/Namebotton01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Set/Namebotton01.png -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Set/Namebotton01.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Set/Namebotton01.png.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Set/Namebotton02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Set/Namebotton02.png -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Set/Namebotton02.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Set/Namebotton02.png.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Set/Resolution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Set/Resolution.png -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Set/Resolution.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Set/Resolution.png.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Set/Secession.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Set/Secession.png -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Set/Secession.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Set/Secession.png.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Set/Terms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Set/Terms.png -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Set/Terms.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Set/Terms.png.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Set/Username.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Set/Username.png -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Set/Username.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Set/Username.png.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Set/Volume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Set/Volume.png -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Set/Volume.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Set/Volume.png.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Stage.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Stage.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Stage/Back.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Stage/Back.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Stage/Back/Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Stage/Back/Background.png -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Stage/Back/Background.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Stage/Back/Background.png.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Stage/Back/Foldingpaper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Stage/Back/Foldingpaper.png -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Stage/Back/Foldingpaper.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Stage/Back/Foldingpaper.png.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Stage/Back/FoldingpaperShadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Stage/Back/FoldingpaperShadow.png -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Stage/Back/FoldingpaperShadow.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Stage/Back/FoldingpaperShadow.png.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Stage/Back/Lefrupside.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Stage/Back/Lefrupside.png -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Stage/Back/Lefrupside.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Stage/Back/Lefrupside.png.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Stage/Back/RIghtdownside.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Stage/Back/RIghtdownside.png -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Stage/Back/RIghtdownside.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Stage/Back/RIghtdownside.png.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Stage/Back/Rightupside.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Stage/Back/Rightupside.png -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Stage/Back/Rightupside.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Stage/Back/Rightupside.png.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Stage/Backbotton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Stage/Backbotton.png -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Stage/Backbotton.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Stage/Backbotton.png.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Stage/Card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Stage/Card.png -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Stage/Card.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Stage/Card.png.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Stage/Cardline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Stage/Cardline.png -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Stage/Cardline.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Stage/Cardline.png.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Stage/Cristalblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Stage/Cristalblue.png -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Stage/Cristalblue.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Stage/Cristalblue.png.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Stage/Cristalorange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Stage/Cristalorange.png -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Stage/Cristalorange.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Stage/Cristalorange.png.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Stage/Cristalred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Stage/Cristalred.png -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Stage/Cristalred.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Stage/Cristalred.png.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Stage/Gamebotton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Stage/Gamebotton.png -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Stage/Gamebotton.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Stage/Gamebotton.png.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Stage/Gameplay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Stage/Gameplay.png -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Stage/Gameplay.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Stage/Gameplay.png.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Stage/Stage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Stage/Stage.png -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Stage/Stage.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Stage/Stage.png.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Stage/Stageexplanation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Stage/Stageexplanation.png -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Stage/Stageexplanation.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Stage/Stageexplanation.png.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Stage/Stageexplanation__.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Stage/Stageexplanation__.png -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Stage/Stageexplanation__.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Stage/Stageexplanation__.png.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Stage/Stagename.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Stage/Stagename.png -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Stage/Stagename.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Stage/Stagename.png.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Start.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Start.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Start/Touchtoscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Start/Touchtoscreen.png -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Freeui/ZOSMA/Start/Touchtoscreen.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Freeui/ZOSMA/Start/Touchtoscreen.png.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Sci-Fi UI.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Sci-Fi UI.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Sci-Fi UI/Demo.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Sci-Fi UI/Demo.unity -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Sci-Fi UI/Demo.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Sci-Fi UI/Demo.unity.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Sci-Fi UI/Demo_Assets.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Sci-Fi UI/Demo_Assets.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Sci-Fi UI/Demo_Assets/background.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Sci-Fi UI/Demo_Assets/background.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Sci-Fi UI/Demo_Assets/background/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Sci-Fi UI/Demo_Assets/background/Materials.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Sci-Fi UI/Demo_Assets/background/Materials/Space.tga.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Sci-Fi UI/Demo_Assets/background/Materials/Space.tga.mat -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Sci-Fi UI/Demo_Assets/background/Materials/Space.tga.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Sci-Fi UI/Demo_Assets/background/Materials/Space.tga.mat.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Sci-Fi UI/Demo_Assets/background/Space.tga.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Sci-Fi UI/Demo_Assets/background/Space.tga.jpg -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Sci-Fi UI/Demo_Assets/background/Space.tga.jpg.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Sci-Fi UI/Demo_Assets/background/Space.tga.jpg.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Sci-Fi UI/Demo_Assets/scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Sci-Fi UI/Demo_Assets/scripts.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Sci-Fi UI/Demo_Assets/scripts/GUI_Demo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Sci-Fi UI/Demo_Assets/scripts/GUI_Demo.cs -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Sci-Fi UI/Demo_Assets/scripts/GUI_Demo.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Sci-Fi UI/Demo_Assets/scripts/GUI_Demo.cs.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Bonus_Assets.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Bonus_Assets.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Bonus_Assets/arrows.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Bonus_Assets/arrows.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Bonus_Assets/arrows/arrow1_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Bonus_Assets/arrows/arrow1_left.png -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Bonus_Assets/arrows/arrow1_left.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Bonus_Assets/arrows/arrow1_left.png.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Bonus_Assets/arrows/arrow1_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Bonus_Assets/arrows/arrow1_right.png -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Bonus_Assets/arrows/arrow1_right.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Bonus_Assets/arrows/arrow1_right.png.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Bonus_Assets/arrows/arrow_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Bonus_Assets/arrows/arrow_left.png -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Bonus_Assets/arrows/arrow_left.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Bonus_Assets/arrows/arrow_left.png.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Bonus_Assets/arrows/arrow_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Bonus_Assets/arrows/arrow_right.png -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Bonus_Assets/arrows/arrow_right.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Bonus_Assets/arrows/arrow_right.png.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Bonus_Assets/arrows/back_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Bonus_Assets/arrows/back_arrow.png -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Bonus_Assets/arrows/back_arrow.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Bonus_Assets/arrows/back_arrow.png.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Bonus_Assets/arrows/long_arrow_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Bonus_Assets/arrows/long_arrow_left.png -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Bonus_Assets/arrows/long_arrow_left.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Bonus_Assets/arrows/long_arrow_left.png.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Bonus_Assets/arrows/long_arrow_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Bonus_Assets/arrows/long_arrow_right.png -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Bonus_Assets/arrows/long_arrow_right.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Bonus_Assets/arrows/long_arrow_right.png.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Bonus_Assets/arrows/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Bonus_Assets/arrows/plus.png -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Bonus_Assets/arrows/plus.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Bonus_Assets/arrows/plus.png.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Bonus_Assets/bars.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Bonus_Assets/bars.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Bonus_Assets/bars/background_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Bonus_Assets/bars/background_bar.png -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Bonus_Assets/bars/background_bar.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Bonus_Assets/bars/background_bar.png.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Bonus_Assets/bars/background_bar1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Bonus_Assets/bars/background_bar1.png -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Bonus_Assets/bars/background_bar1.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Bonus_Assets/bars/background_bar1.png.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Bonus_Assets/bars/bar_purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Bonus_Assets/bars/bar_purple.png -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Bonus_Assets/bars/bar_purple.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Bonus_Assets/bars/bar_purple.png.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Bonus_Assets/bars/bar_purple1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Bonus_Assets/bars/bar_purple1.png -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Bonus_Assets/bars/bar_purple1.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Bonus_Assets/bars/bar_purple1.png.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Bonus_Assets/bars/bar_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Bonus_Assets/bars/bar_red.png -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Bonus_Assets/bars/bar_red.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Bonus_Assets/bars/bar_red.png.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Bonus_Assets/bars/bar_red1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Bonus_Assets/bars/bar_red1.png -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Bonus_Assets/bars/bar_red1.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Bonus_Assets/bars/bar_red1.png.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Bonus_Assets/bars/progress_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Bonus_Assets/bars/progress_bar.png -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Bonus_Assets/bars/progress_bar.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Bonus_Assets/bars/progress_bar.png.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Bonus_Assets/bars/progress_bar1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Bonus_Assets/bars/progress_bar1.png -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Bonus_Assets/bars/progress_bar1.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Bonus_Assets/bars/progress_bar1.png.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/SciFi_Skin.guiskin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/SciFi_Skin.guiskin -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/SciFi_Skin.guiskin.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/SciFi_Skin.guiskin.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Skin_Assets.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Skin_Assets.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Skin_Assets/bars.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Skin_Assets/bars.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Skin_Assets/bars/bar_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Skin_Assets/bars/bar_blue.png -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Skin_Assets/bars/bar_blue.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Skin_Assets/bars/bar_blue.png.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Skin_Assets/bars/bar_blue1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Skin_Assets/bars/bar_blue1.png -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Skin_Assets/bars/bar_blue1.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Skin_Assets/bars/bar_blue1.png.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Skin_Assets/bars/bar_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Skin_Assets/bars/bar_green.png -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Skin_Assets/bars/bar_green.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Skin_Assets/bars/bar_green.png.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Skin_Assets/bars/bar_green1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Skin_Assets/bars/bar_green1.png -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Skin_Assets/bars/bar_green1.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Skin_Assets/bars/bar_green1.png.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Skin_Assets/bars/progress_bar_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Skin_Assets/bars/progress_bar_background.png -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Skin_Assets/bars/progress_bar_background.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Skin_Assets/bars/progress_bar_background.png.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Skin_Assets/bars/progress_bar_background1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Skin_Assets/bars/progress_bar_background1.png -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Skin_Assets/bars/progress_bar_background1.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Skin_Assets/bars/progress_bar_background1.png.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Skin_Assets/buttons.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Skin_Assets/buttons.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Skin_Assets/buttons/bullets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Skin_Assets/buttons/bullets.png -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Skin_Assets/buttons/bullets.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Skin_Assets/buttons/bullets.png.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Skin_Assets/buttons/button1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Skin_Assets/buttons/button1.png -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Skin_Assets/buttons/button1.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Skin_Assets/buttons/button1.png.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Skin_Assets/buttons/button_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Skin_Assets/buttons/button_active.png -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Skin_Assets/buttons/button_active.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Skin_Assets/buttons/button_active.png.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Skin_Assets/buttons/button_pushed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Skin_Assets/buttons/button_pushed.png -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Skin_Assets/buttons/button_pushed.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Skin_Assets/buttons/button_pushed.png.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Skin_Assets/buttons/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Skin_Assets/buttons/pause.png -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Skin_Assets/buttons/pause.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Skin_Assets/buttons/pause.png.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Skin_Assets/buttons/rocket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Skin_Assets/buttons/rocket.png -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Skin_Assets/buttons/rocket.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Skin_Assets/buttons/rocket.png.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Skin_Assets/font.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Skin_Assets/font.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Skin_Assets/font/zekton free.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Skin_Assets/font/zekton free.ttf -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Skin_Assets/font/zekton free.ttf.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Skin_Assets/font/zekton free.ttf.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Skin_Assets/joystick.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Skin_Assets/joystick.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Skin_Assets/joystick/joystick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Skin_Assets/joystick/joystick.png -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Skin_Assets/joystick/joystick.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Skin_Assets/joystick/joystick.png.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Skin_Assets/joystick/joystick_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Skin_Assets/joystick/joystick_back.png -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Skin_Assets/joystick/joystick_back.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Skin_Assets/joystick/joystick_back.png.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Skin_Assets/window.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Skin_Assets/window.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Skin_Assets/window/window_transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Skin_Assets/window/window_transparent.png -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Skin_Assets/window/window_transparent.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Skin_Assets/window/window_transparent.png.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Skin_Assets/window/window_transparent1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Skin_Assets/window/window_transparent1.png -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Skin_Assets/window/window_transparent1.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/Skin_Assets/window/window_transparent1.png.meta -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/atlas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/atlas.png -------------------------------------------------------------------------------- /Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/atlas.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/3rd Party Assets/Sci-Fi UI/_SciFi_GUISkin_/atlas.png.meta -------------------------------------------------------------------------------- /Assets/Benchmark.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/Benchmark.meta -------------------------------------------------------------------------------- /Assets/Benchmark/Default Camera Stacking.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/Benchmark/Default Camera Stacking.meta -------------------------------------------------------------------------------- /Assets/Benchmark/Default Camera Stacking/Default Stacking.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/Benchmark/Default Camera Stacking/Default Stacking.unity -------------------------------------------------------------------------------- /Assets/Benchmark/Default Camera Stacking/Default Stacking.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/Benchmark/Default Camera Stacking/Default Stacking.unity.meta -------------------------------------------------------------------------------- /Assets/Benchmark/Optimized Camera Stacking.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/Benchmark/Optimized Camera Stacking.meta -------------------------------------------------------------------------------- /Assets/Benchmark/Optimized Camera Stacking/Optimized Stacking.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/Benchmark/Optimized Camera Stacking/Optimized Stacking.unity -------------------------------------------------------------------------------- /Assets/Benchmark/Optimized Camera Stacking/Optimized Stacking.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/Benchmark/Optimized Camera Stacking/Optimized Stacking.unity.meta -------------------------------------------------------------------------------- /Assets/Compositor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/Compositor.meta -------------------------------------------------------------------------------- /Assets/Compositor/DefaultCompositionGraph.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/Compositor/DefaultCompositionGraph.asset -------------------------------------------------------------------------------- /Assets/Compositor/DefaultCompositionGraph.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/Compositor/DefaultCompositionGraph.asset.meta -------------------------------------------------------------------------------- /Assets/Compositor/DefaultCompositionGraph.shadergraph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/Compositor/DefaultCompositionGraph.shadergraph -------------------------------------------------------------------------------- /Assets/Compositor/DefaultCompositionGraph.shadergraph.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/Compositor/DefaultCompositionGraph.shadergraph.meta -------------------------------------------------------------------------------- /Assets/HDRPDefaultResources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/HDRPDefaultResources.meta -------------------------------------------------------------------------------- /Assets/HDRPDefaultResources/DefaultLookDevProfile.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/HDRPDefaultResources/DefaultLookDevProfile.asset -------------------------------------------------------------------------------- /Assets/HDRPDefaultResources/DefaultLookDevProfile.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/HDRPDefaultResources/DefaultLookDevProfile.asset.meta -------------------------------------------------------------------------------- /Assets/HDRPDefaultResources/DefaultSettingsVolumeProfile.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/HDRPDefaultResources/DefaultSettingsVolumeProfile.asset -------------------------------------------------------------------------------- /Assets/HDRPDefaultResources/DefaultSettingsVolumeProfile.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/HDRPDefaultResources/DefaultSettingsVolumeProfile.asset.meta -------------------------------------------------------------------------------- /Assets/HDRPDefaultResources/FoliageDiffusionProfile.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/HDRPDefaultResources/FoliageDiffusionProfile.asset -------------------------------------------------------------------------------- /Assets/HDRPDefaultResources/FoliageDiffusionProfile.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/HDRPDefaultResources/FoliageDiffusionProfile.asset.meta -------------------------------------------------------------------------------- /Assets/HDRPDefaultResources/HDRenderPipelineAsset.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/HDRPDefaultResources/HDRenderPipelineAsset.asset -------------------------------------------------------------------------------- /Assets/HDRPDefaultResources/HDRenderPipelineAsset.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/HDRPDefaultResources/HDRenderPipelineAsset.asset.meta -------------------------------------------------------------------------------- /Assets/HDRPDefaultResources/HDRenderPipelineGlobalSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/HDRPDefaultResources/HDRenderPipelineGlobalSettings.asset -------------------------------------------------------------------------------- /Assets/HDRPDefaultResources/HDRenderPipelineGlobalSettings.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/HDRPDefaultResources/HDRenderPipelineGlobalSettings.asset.meta -------------------------------------------------------------------------------- /Assets/HDRPDefaultResources/SkinDiffusionProfile.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/HDRPDefaultResources/SkinDiffusionProfile.asset -------------------------------------------------------------------------------- /Assets/HDRPDefaultResources/SkinDiffusionProfile.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/HDRPDefaultResources/SkinDiffusionProfile.asset.meta -------------------------------------------------------------------------------- /Assets/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/Scenes.meta -------------------------------------------------------------------------------- /Assets/Scenes/Custom Compositing.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/Scenes/Custom Compositing.meta -------------------------------------------------------------------------------- /Assets/Scenes/Custom Compositing.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/Scenes/Custom Compositing.unity -------------------------------------------------------------------------------- /Assets/Scenes/Custom Compositing.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/Scenes/Custom Compositing.unity.meta -------------------------------------------------------------------------------- /Assets/Scenes/Custom Compositing/Compositing Tests.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/Scenes/Custom Compositing/Compositing Tests.shader -------------------------------------------------------------------------------- /Assets/Scenes/Custom Compositing/Compositing Tests.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/Scenes/Custom Compositing/Compositing Tests.shader.meta -------------------------------------------------------------------------------- /Assets/Scenes/Custom Compositing/HDRP UI Camera_Compositing Tests.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/Scenes/Custom Compositing/HDRP UI Camera_Compositing Tests.mat -------------------------------------------------------------------------------- /Assets/Scenes/Custom Compositing/HDRP UI Camera_Compositing Tests.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/Scenes/Custom Compositing/HDRP UI Camera_Compositing Tests.mat.meta -------------------------------------------------------------------------------- /Assets/Scenes/Custom Compositing/Sky and Fog Settings Profile.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/Scenes/Custom Compositing/Sky and Fog Settings Profile.asset -------------------------------------------------------------------------------- /Assets/Scenes/Custom Compositing/Sky and Fog Settings Profile.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/Scenes/Custom Compositing/Sky and Fog Settings Profile.asset.meta -------------------------------------------------------------------------------- /Assets/Scenes/Fantasy UI.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/Scenes/Fantasy UI.meta -------------------------------------------------------------------------------- /Assets/Scenes/Fantasy UI.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/Scenes/Fantasy UI.unity -------------------------------------------------------------------------------- /Assets/Scenes/Fantasy UI.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/Scenes/Fantasy UI.unity.meta -------------------------------------------------------------------------------- /Assets/Scenes/Fantasy UI/Sky and Fog Settings Profile.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/Scenes/Fantasy UI/Sky and Fog Settings Profile.asset -------------------------------------------------------------------------------- /Assets/Scenes/Fantasy UI/Sky and Fog Settings Profile.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/Scenes/Fantasy UI/Sky and Fog Settings Profile.asset.meta -------------------------------------------------------------------------------- /Assets/Scenes/No TAA + MSAA for UI.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/Scenes/No TAA + MSAA for UI.unity -------------------------------------------------------------------------------- /Assets/Scenes/No TAA + MSAA for UI.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/Scenes/No TAA + MSAA for UI.unity.meta -------------------------------------------------------------------------------- /Assets/Scenes/RenderTexture In UI.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/Scenes/RenderTexture In UI.meta -------------------------------------------------------------------------------- /Assets/Scenes/RenderTexture In UI.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/Scenes/RenderTexture In UI.unity -------------------------------------------------------------------------------- /Assets/Scenes/RenderTexture In UI.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/Scenes/RenderTexture In UI.unity.meta -------------------------------------------------------------------------------- /Assets/Scenes/RenderTexture In UI/Post Process Layer Profile.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/Scenes/RenderTexture In UI/Post Process Layer Profile.asset -------------------------------------------------------------------------------- /Assets/Scenes/RenderTexture In UI/Post Process Layer Profile.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/Scenes/RenderTexture In UI/Post Process Layer Profile.asset.meta -------------------------------------------------------------------------------- /Assets/Scenes/RenderTexture In UI/Scene.renderTexture: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/Scenes/RenderTexture In UI/Scene.renderTexture -------------------------------------------------------------------------------- /Assets/Scenes/RenderTexture In UI/Scene.renderTexture.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/Scenes/RenderTexture In UI/Scene.renderTexture.meta -------------------------------------------------------------------------------- /Assets/Scenes/RenderTexture In UI/Sky and Fog Settings Profile.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/Scenes/RenderTexture In UI/Sky and Fog Settings Profile.asset -------------------------------------------------------------------------------- /Assets/Scenes/RenderTexture In UI/Sky and Fog Settings Profile.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/Scenes/RenderTexture In UI/Sky and Fog Settings Profile.asset.meta -------------------------------------------------------------------------------- /Assets/Scenes/Simple.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/Scenes/Simple.meta -------------------------------------------------------------------------------- /Assets/Scenes/Simple.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/Scenes/Simple.unity -------------------------------------------------------------------------------- /Assets/Scenes/Simple.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/Scenes/Simple.unity.meta -------------------------------------------------------------------------------- /Assets/Scenes/Simple/SkyandFogSettingsProfile.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/Scenes/Simple/SkyandFogSettingsProfile.asset -------------------------------------------------------------------------------- /Assets/Scenes/Simple/SkyandFogSettingsProfile.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/Scenes/Simple/SkyandFogSettingsProfile.asset.meta -------------------------------------------------------------------------------- /Assets/Scenes/SplitScreen.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/Scenes/SplitScreen.unity -------------------------------------------------------------------------------- /Assets/Scenes/SplitScreen.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/Scenes/SplitScreen.unity.meta -------------------------------------------------------------------------------- /Assets/Scenes/UI To RenderTexture.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/Scenes/UI To RenderTexture.meta -------------------------------------------------------------------------------- /Assets/Scenes/UI To RenderTexture.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/Scenes/UI To RenderTexture.unity -------------------------------------------------------------------------------- /Assets/Scenes/UI To RenderTexture.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/Scenes/UI To RenderTexture.unity.meta -------------------------------------------------------------------------------- /Assets/Scenes/UI To RenderTexture/Post Process Layer Profile.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/Scenes/UI To RenderTexture/Post Process Layer Profile.asset -------------------------------------------------------------------------------- /Assets/Scenes/UI To RenderTexture/Post Process Layer Profile.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/Scenes/UI To RenderTexture/Post Process Layer Profile.asset.meta -------------------------------------------------------------------------------- /Assets/Scenes/UI To RenderTexture/Sky and Fog Settings Profile.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/Scenes/UI To RenderTexture/Sky and Fog Settings Profile.asset -------------------------------------------------------------------------------- /Assets/Scenes/UI To RenderTexture/Sky and Fog Settings Profile.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/Scenes/UI To RenderTexture/Sky and Fog Settings Profile.asset.meta -------------------------------------------------------------------------------- /Assets/Scenes/UI To RenderTexture/UI.renderTexture: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/Scenes/UI To RenderTexture/UI.renderTexture -------------------------------------------------------------------------------- /Assets/Scenes/UI To RenderTexture/UI.renderTexture.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/Scenes/UI To RenderTexture/UI.renderTexture.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/TextMesh Pro.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Documentation.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/TextMesh Pro/Documentation.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Documentation/TextMesh Pro User Guide 2016.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/TextMesh Pro/Documentation/TextMesh Pro User Guide 2016.pdf -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Documentation/TextMesh Pro User Guide 2016.pdf.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/TextMesh Pro/Documentation/TextMesh Pro User Guide 2016.pdf.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Fonts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/TextMesh Pro/Fonts.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Fonts/LiberationSans - OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/TextMesh Pro/Fonts/LiberationSans - OFL.txt -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Fonts/LiberationSans - OFL.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/TextMesh Pro/Fonts/LiberationSans - OFL.txt.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Fonts/LiberationSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/TextMesh Pro/Fonts/LiberationSans.ttf -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Fonts/LiberationSans.ttf.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/TextMesh Pro/Fonts/LiberationSans.ttf.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/TextMesh Pro/Resources.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Fonts & Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/TextMesh Pro/Resources/Fonts & Materials.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Drop Shadow.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Drop Shadow.mat -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Drop Shadow.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Drop Shadow.mat.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Fallback.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Fallback.asset -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Fallback.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Fallback.asset.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Outline.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Outline.mat -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Outline.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Outline.mat.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF.asset -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF.asset.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/LineBreaking Following Characters.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/TextMesh Pro/Resources/LineBreaking Following Characters.txt -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/LineBreaking Following Characters.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/TextMesh Pro/Resources/LineBreaking Following Characters.txt.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/LineBreaking Leading Characters.txt: -------------------------------------------------------------------------------- 1 | ([{〔〈《「『【〘〖〝‘“⦅«$—…‥〳〴〵\[({£¥"々〇$¥₩ # -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/LineBreaking Leading Characters.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/TextMesh Pro/Resources/LineBreaking Leading Characters.txt.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Sprite Assets.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/TextMesh Pro/Resources/Sprite Assets.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Sprite Assets/EmojiOne.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/TextMesh Pro/Resources/Sprite Assets/EmojiOne.asset -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Sprite Assets/EmojiOne.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/TextMesh Pro/Resources/Sprite Assets/EmojiOne.asset.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Style Sheets.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/TextMesh Pro/Resources/Style Sheets.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Style Sheets/Default Style Sheet.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/TextMesh Pro/Resources/Style Sheets/Default Style Sheet.asset -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Style Sheets/Default Style Sheet.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/TextMesh Pro/Resources/Style Sheets/Default Style Sheet.asset.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/TMP Settings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/TextMesh Pro/Resources/TMP Settings.asset -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/TMP Settings.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/TextMesh Pro/Resources/TMP Settings.asset.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/TextMesh Pro/Shaders.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_Bitmap-Custom-Atlas.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/TextMesh Pro/Shaders/TMP_Bitmap-Custom-Atlas.shader -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_Bitmap-Custom-Atlas.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/TextMesh Pro/Shaders/TMP_Bitmap-Custom-Atlas.shader.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_Bitmap-Mobile.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/TextMesh Pro/Shaders/TMP_Bitmap-Mobile.shader -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_Bitmap-Mobile.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/TextMesh Pro/Shaders/TMP_Bitmap-Mobile.shader.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_Bitmap.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/TextMesh Pro/Shaders/TMP_Bitmap.shader -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_Bitmap.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/TextMesh Pro/Shaders/TMP_Bitmap.shader.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_SDF Overlay.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/TextMesh Pro/Shaders/TMP_SDF Overlay.shader -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_SDF Overlay.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/TextMesh Pro/Shaders/TMP_SDF Overlay.shader.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_SDF SSD.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/TextMesh Pro/Shaders/TMP_SDF SSD.shader -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_SDF SSD.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/TextMesh Pro/Shaders/TMP_SDF SSD.shader.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Masking.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Masking.shader -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Masking.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Masking.shader.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Overlay.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Overlay.shader -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Overlay.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Overlay.shader.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile SSD.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile SSD.shader -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile SSD.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile SSD.shader.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile.shader -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile.shader.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_SDF-Surface-Mobile.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/TextMesh Pro/Shaders/TMP_SDF-Surface-Mobile.shader -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_SDF-Surface-Mobile.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/TextMesh Pro/Shaders/TMP_SDF-Surface-Mobile.shader.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_SDF-Surface.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/TextMesh Pro/Shaders/TMP_SDF-Surface.shader -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_SDF-Surface.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/TextMesh Pro/Shaders/TMP_SDF-Surface.shader.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_SDF.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/TextMesh Pro/Shaders/TMP_SDF.shader -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_SDF.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/TextMesh Pro/Shaders/TMP_SDF.shader.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_Sprite.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/TextMesh Pro/Shaders/TMP_Sprite.shader -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_Sprite.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/TextMesh Pro/Shaders/TMP_Sprite.shader.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMPro.cginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/TextMesh Pro/Shaders/TMPro.cginc -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMPro.cginc.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/TextMesh Pro/Shaders/TMPro.cginc.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMPro_Mobile.cginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/TextMesh Pro/Shaders/TMPro_Mobile.cginc -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMPro_Mobile.cginc.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/TextMesh Pro/Shaders/TMPro_Mobile.cginc.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMPro_Properties.cginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/TextMesh Pro/Shaders/TMPro_Properties.cginc -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMPro_Properties.cginc.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/TextMesh Pro/Shaders/TMPro_Properties.cginc.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMPro_Surface.cginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/TextMesh Pro/Shaders/TMPro_Surface.cginc -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMPro_Surface.cginc.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/TextMesh Pro/Shaders/TMPro_Surface.cginc.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Sprites.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/TextMesh Pro/Sprites.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Sprites/EmojiOne Attribution.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/TextMesh Pro/Sprites/EmojiOne Attribution.txt -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Sprites/EmojiOne Attribution.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/TextMesh Pro/Sprites/EmojiOne Attribution.txt.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Sprites/EmojiOne.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/TextMesh Pro/Sprites/EmojiOne.json -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Sprites/EmojiOne.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/TextMesh Pro/Sprites/EmojiOne.json.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Sprites/EmojiOne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/TextMesh Pro/Sprites/EmojiOne.png -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Sprites/EmojiOne.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/TextMesh Pro/Sprites/EmojiOne.png.meta -------------------------------------------------------------------------------- /Assets/XR.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/XR.meta -------------------------------------------------------------------------------- /Assets/XR/Loaders.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/XR/Loaders.meta -------------------------------------------------------------------------------- /Assets/XR/Loaders/Mock HMD Loader.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/XR/Loaders/Mock HMD Loader.asset -------------------------------------------------------------------------------- /Assets/XR/Loaders/Mock HMD Loader.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/XR/Loaders/Mock HMD Loader.asset.meta -------------------------------------------------------------------------------- /Assets/XR/Settings.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/XR/Settings.meta -------------------------------------------------------------------------------- /Assets/XR/Settings/Mock HMD Build Settings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/XR/Settings/Mock HMD Build Settings.asset -------------------------------------------------------------------------------- /Assets/XR/Settings/Mock HMD Build Settings.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/XR/Settings/Mock HMD Build Settings.asset.meta -------------------------------------------------------------------------------- /Assets/XR/XRGeneralSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/XR/XRGeneralSettings.asset -------------------------------------------------------------------------------- /Assets/XR/XRGeneralSettings.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/XR/XRGeneralSettings.asset.meta -------------------------------------------------------------------------------- /Assets/com.alelievr.hdrp-ui-camera-stacking.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/com.alelievr.hdrp-ui-camera-stacking.meta -------------------------------------------------------------------------------- /Assets/com.alelievr.hdrp-ui-camera-stacking/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/com.alelievr.hdrp-ui-camera-stacking/Editor.meta -------------------------------------------------------------------------------- /Assets/com.alelievr.hdrp-ui-camera-stacking/Editor/HDCameraUIEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/com.alelievr.hdrp-ui-camera-stacking/Editor/HDCameraUIEditor.cs -------------------------------------------------------------------------------- /Assets/com.alelievr.hdrp-ui-camera-stacking/Editor/HDCameraUIEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/com.alelievr.hdrp-ui-camera-stacking/Editor/HDCameraUIEditor.cs.meta -------------------------------------------------------------------------------- /Assets/com.alelievr.hdrp-ui-camera-stacking/Editor/com.alelievr.hdrp-ui-camera-stacking.editor.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/com.alelievr.hdrp-ui-camera-stacking/Editor/com.alelievr.hdrp-ui-camera-stacking.editor.asmdef -------------------------------------------------------------------------------- /Assets/com.alelievr.hdrp-ui-camera-stacking/Editor/com.alelievr.hdrp-ui-camera-stacking.editor.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/com.alelievr.hdrp-ui-camera-stacking/Editor/com.alelievr.hdrp-ui-camera-stacking.editor.asmdef.meta -------------------------------------------------------------------------------- /Assets/com.alelievr.hdrp-ui-camera-stacking/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/com.alelievr.hdrp-ui-camera-stacking/LICENSE -------------------------------------------------------------------------------- /Assets/com.alelievr.hdrp-ui-camera-stacking/LICENSE.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/com.alelievr.hdrp-ui-camera-stacking/LICENSE.meta -------------------------------------------------------------------------------- /Assets/com.alelievr.hdrp-ui-camera-stacking/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/com.alelievr.hdrp-ui-camera-stacking/README.md -------------------------------------------------------------------------------- /Assets/com.alelievr.hdrp-ui-camera-stacking/README.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/com.alelievr.hdrp-ui-camera-stacking/README.md.meta -------------------------------------------------------------------------------- /Assets/com.alelievr.hdrp-ui-camera-stacking/Runtime.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/com.alelievr.hdrp-ui-camera-stacking/Runtime.meta -------------------------------------------------------------------------------- /Assets/com.alelievr.hdrp-ui-camera-stacking/Runtime/CameraStackingCompositing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/com.alelievr.hdrp-ui-camera-stacking/Runtime/CameraStackingCompositing.cs -------------------------------------------------------------------------------- /Assets/com.alelievr.hdrp-ui-camera-stacking/Runtime/CameraStackingCompositing.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/com.alelievr.hdrp-ui-camera-stacking/Runtime/CameraStackingCompositing.cs.meta -------------------------------------------------------------------------------- /Assets/com.alelievr.hdrp-ui-camera-stacking/Runtime/HDCameraUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/com.alelievr.hdrp-ui-camera-stacking/Runtime/HDCameraUI.cs -------------------------------------------------------------------------------- /Assets/com.alelievr.hdrp-ui-camera-stacking/Runtime/HDCameraUI.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/com.alelievr.hdrp-ui-camera-stacking/Runtime/HDCameraUI.cs.meta -------------------------------------------------------------------------------- /Assets/com.alelievr.hdrp-ui-camera-stacking/Runtime/HDRP Injection asmref.asmref: -------------------------------------------------------------------------------- 1 | { 2 | "reference": "GUID:457756d89b35d2941b3e7b37b4ece6f1" 3 | } -------------------------------------------------------------------------------- /Assets/com.alelievr.hdrp-ui-camera-stacking/Runtime/HDRP Injection asmref.asmref.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/com.alelievr.hdrp-ui-camera-stacking/Runtime/HDRP Injection asmref.asmref.meta -------------------------------------------------------------------------------- /Assets/com.alelievr.hdrp-ui-camera-stacking/Runtime/HDRP UI Compositing.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/com.alelievr.hdrp-ui-camera-stacking/Runtime/HDRP UI Compositing.shader -------------------------------------------------------------------------------- /Assets/com.alelievr.hdrp-ui-camera-stacking/Runtime/HDRP UI Compositing.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/com.alelievr.hdrp-ui-camera-stacking/Runtime/HDRP UI Compositing.shader.meta -------------------------------------------------------------------------------- /Assets/com.alelievr.hdrp-ui-camera-stacking/Runtime/HDRPExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/com.alelievr.hdrp-ui-camera-stacking/Runtime/HDRPExtension.cs -------------------------------------------------------------------------------- /Assets/com.alelievr.hdrp-ui-camera-stacking/Runtime/HDRPExtension.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/com.alelievr.hdrp-ui-camera-stacking/Runtime/HDRPExtension.cs.meta -------------------------------------------------------------------------------- /Assets/com.alelievr.hdrp-ui-camera-stacking/Runtime/PackageInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/com.alelievr.hdrp-ui-camera-stacking/Runtime/PackageInfo.cs -------------------------------------------------------------------------------- /Assets/com.alelievr.hdrp-ui-camera-stacking/Runtime/PackageInfo.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/com.alelievr.hdrp-ui-camera-stacking/Runtime/PackageInfo.cs.meta -------------------------------------------------------------------------------- /Assets/com.alelievr.hdrp-ui-camera-stacking/Runtime/UI Transparency Background Init.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/com.alelievr.hdrp-ui-camera-stacking/Runtime/UI Transparency Background Init.shader -------------------------------------------------------------------------------- /Assets/com.alelievr.hdrp-ui-camera-stacking/Runtime/UI Transparency Background Init.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/com.alelievr.hdrp-ui-camera-stacking/Runtime/UI Transparency Background Init.shader.meta -------------------------------------------------------------------------------- /Assets/com.alelievr.hdrp-ui-camera-stacking/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/com.alelievr.hdrp-ui-camera-stacking/package.json -------------------------------------------------------------------------------- /Assets/com.alelievr.hdrp-ui-camera-stacking/package.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Assets/com.alelievr.hdrp-ui-camera-stacking/package.json.meta -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/LICENSE -------------------------------------------------------------------------------- /Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Packages/manifest.json -------------------------------------------------------------------------------- /Packages/packages-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/Packages/packages-lock.json -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/HDRPProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/ProjectSettings/HDRPProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/MemorySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/ProjectSettings/MemorySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/MultiplayerManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/ProjectSettings/MultiplayerManager.asset -------------------------------------------------------------------------------- /ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /ProjectSettings/PS5Settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/ProjectSettings/PS5Settings.json -------------------------------------------------------------------------------- /ProjectSettings/PackageManagerSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/ProjectSettings/PackageManagerSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/SceneTemplateSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/ProjectSettings/SceneTemplateSettings.json -------------------------------------------------------------------------------- /ProjectSettings/ShaderGraphSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/ProjectSettings/ShaderGraphSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /ProjectSettings/VersionControlSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/ProjectSettings/VersionControlSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/XRPackageSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/ProjectSettings/XRPackageSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/ProjectSettings/XRSettings.asset -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/README.md -------------------------------------------------------------------------------- /UserSettings/EditorUserSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/UserSettings/EditorUserSettings.asset -------------------------------------------------------------------------------- /UserSettings/HDRPUserSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/UserSettings/HDRPUserSettings.asset -------------------------------------------------------------------------------- /UserSettings/Layouts/default-2022.dwlt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/UserSettings/Layouts/default-2022.dwlt -------------------------------------------------------------------------------- /UserSettings/Search.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alelievr/HDRP-UI-Camera-Stacking/HEAD/UserSettings/Search.settings --------------------------------------------------------------------------------