├── .DS_Store ├── .gitignore ├── Assets ├── .DS_Store ├── Images.meta ├── Images │ ├── GreenScreen.png │ ├── GreenScreen.png.meta │ ├── lines.png │ └── lines.png.meta ├── Materials.meta ├── Materials │ ├── GroundPlane.mat │ ├── GroundPlane.mat.meta │ ├── TransVideo.mat │ ├── TransVideo.mat.meta │ ├── TransVideo.shadergraph │ └── TransVideo.shadergraph.meta ├── Rendering.meta ├── Rendering │ ├── AR Camera Profile.asset │ ├── AR Camera Profile.asset.meta │ ├── UniversalRenderPipelineAsset.asset │ ├── UniversalRenderPipelineAsset.asset.meta │ ├── UniversalRenderPipelineAsset_Renderer.asset │ └── UniversalRenderPipelineAsset_Renderer.asset.meta ├── Scenes.meta ├── Scenes │ ├── main.unity │ └── main.unity.meta ├── Scripts.meta ├── Scripts │ ├── PlaceContent.cs │ ├── PlaceContent.cs.meta │ ├── ToggleAR.cs │ ├── ToggleAR.cs.meta │ ├── TouchInteraction.cs │ ├── TouchInteraction.cs.meta │ ├── VideoScaler.cs │ └── VideoScaler.cs.meta ├── Video.meta ├── Video │ ├── IMG_3260.mp4 │ └── IMG_3260.mp4.meta ├── XR.meta └── XR │ ├── XRGeneralSettings.asset │ └── XRGeneralSettings.asset.meta ├── Packages └── manifest.json └── ProjectSettings ├── AudioManager.asset ├── ClusterInputManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── NavMeshAreas.asset ├── Physics2DSettings.asset ├── PresetManager.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── TagManager.asset ├── TimeManager.asset ├── UnityConnectSettings.asset ├── VFXManager.asset └── XRSettings.asset /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Third-Aurora/Transparent-Video-Shader/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Third-Aurora/Transparent-Video-Shader/HEAD/.gitignore -------------------------------------------------------------------------------- /Assets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Third-Aurora/Transparent-Video-Shader/HEAD/Assets/.DS_Store -------------------------------------------------------------------------------- /Assets/Images.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Third-Aurora/Transparent-Video-Shader/HEAD/Assets/Images.meta -------------------------------------------------------------------------------- /Assets/Images/GreenScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Third-Aurora/Transparent-Video-Shader/HEAD/Assets/Images/GreenScreen.png -------------------------------------------------------------------------------- /Assets/Images/GreenScreen.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Third-Aurora/Transparent-Video-Shader/HEAD/Assets/Images/GreenScreen.png.meta -------------------------------------------------------------------------------- /Assets/Images/lines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Third-Aurora/Transparent-Video-Shader/HEAD/Assets/Images/lines.png -------------------------------------------------------------------------------- /Assets/Images/lines.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Third-Aurora/Transparent-Video-Shader/HEAD/Assets/Images/lines.png.meta -------------------------------------------------------------------------------- /Assets/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Third-Aurora/Transparent-Video-Shader/HEAD/Assets/Materials.meta -------------------------------------------------------------------------------- /Assets/Materials/GroundPlane.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Third-Aurora/Transparent-Video-Shader/HEAD/Assets/Materials/GroundPlane.mat -------------------------------------------------------------------------------- /Assets/Materials/GroundPlane.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Third-Aurora/Transparent-Video-Shader/HEAD/Assets/Materials/GroundPlane.mat.meta -------------------------------------------------------------------------------- /Assets/Materials/TransVideo.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Third-Aurora/Transparent-Video-Shader/HEAD/Assets/Materials/TransVideo.mat -------------------------------------------------------------------------------- /Assets/Materials/TransVideo.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Third-Aurora/Transparent-Video-Shader/HEAD/Assets/Materials/TransVideo.mat.meta -------------------------------------------------------------------------------- /Assets/Materials/TransVideo.shadergraph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Third-Aurora/Transparent-Video-Shader/HEAD/Assets/Materials/TransVideo.shadergraph -------------------------------------------------------------------------------- /Assets/Materials/TransVideo.shadergraph.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Third-Aurora/Transparent-Video-Shader/HEAD/Assets/Materials/TransVideo.shadergraph.meta -------------------------------------------------------------------------------- /Assets/Rendering.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Third-Aurora/Transparent-Video-Shader/HEAD/Assets/Rendering.meta -------------------------------------------------------------------------------- /Assets/Rendering/AR Camera Profile.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Third-Aurora/Transparent-Video-Shader/HEAD/Assets/Rendering/AR Camera Profile.asset -------------------------------------------------------------------------------- /Assets/Rendering/AR Camera Profile.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Third-Aurora/Transparent-Video-Shader/HEAD/Assets/Rendering/AR Camera Profile.asset.meta -------------------------------------------------------------------------------- /Assets/Rendering/UniversalRenderPipelineAsset.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Third-Aurora/Transparent-Video-Shader/HEAD/Assets/Rendering/UniversalRenderPipelineAsset.asset -------------------------------------------------------------------------------- /Assets/Rendering/UniversalRenderPipelineAsset.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Third-Aurora/Transparent-Video-Shader/HEAD/Assets/Rendering/UniversalRenderPipelineAsset.asset.meta -------------------------------------------------------------------------------- /Assets/Rendering/UniversalRenderPipelineAsset_Renderer.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Third-Aurora/Transparent-Video-Shader/HEAD/Assets/Rendering/UniversalRenderPipelineAsset_Renderer.asset -------------------------------------------------------------------------------- /Assets/Rendering/UniversalRenderPipelineAsset_Renderer.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Third-Aurora/Transparent-Video-Shader/HEAD/Assets/Rendering/UniversalRenderPipelineAsset_Renderer.asset.meta -------------------------------------------------------------------------------- /Assets/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Third-Aurora/Transparent-Video-Shader/HEAD/Assets/Scenes.meta -------------------------------------------------------------------------------- /Assets/Scenes/main.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Third-Aurora/Transparent-Video-Shader/HEAD/Assets/Scenes/main.unity -------------------------------------------------------------------------------- /Assets/Scenes/main.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Third-Aurora/Transparent-Video-Shader/HEAD/Assets/Scenes/main.unity.meta -------------------------------------------------------------------------------- /Assets/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Third-Aurora/Transparent-Video-Shader/HEAD/Assets/Scripts.meta -------------------------------------------------------------------------------- /Assets/Scripts/PlaceContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Third-Aurora/Transparent-Video-Shader/HEAD/Assets/Scripts/PlaceContent.cs -------------------------------------------------------------------------------- /Assets/Scripts/PlaceContent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Third-Aurora/Transparent-Video-Shader/HEAD/Assets/Scripts/PlaceContent.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/ToggleAR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Third-Aurora/Transparent-Video-Shader/HEAD/Assets/Scripts/ToggleAR.cs -------------------------------------------------------------------------------- /Assets/Scripts/ToggleAR.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Third-Aurora/Transparent-Video-Shader/HEAD/Assets/Scripts/ToggleAR.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/TouchInteraction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Third-Aurora/Transparent-Video-Shader/HEAD/Assets/Scripts/TouchInteraction.cs -------------------------------------------------------------------------------- /Assets/Scripts/TouchInteraction.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Third-Aurora/Transparent-Video-Shader/HEAD/Assets/Scripts/TouchInteraction.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/VideoScaler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Third-Aurora/Transparent-Video-Shader/HEAD/Assets/Scripts/VideoScaler.cs -------------------------------------------------------------------------------- /Assets/Scripts/VideoScaler.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Third-Aurora/Transparent-Video-Shader/HEAD/Assets/Scripts/VideoScaler.cs.meta -------------------------------------------------------------------------------- /Assets/Video.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Third-Aurora/Transparent-Video-Shader/HEAD/Assets/Video.meta -------------------------------------------------------------------------------- /Assets/Video/IMG_3260.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Third-Aurora/Transparent-Video-Shader/HEAD/Assets/Video/IMG_3260.mp4 -------------------------------------------------------------------------------- /Assets/Video/IMG_3260.mp4.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Third-Aurora/Transparent-Video-Shader/HEAD/Assets/Video/IMG_3260.mp4.meta -------------------------------------------------------------------------------- /Assets/XR.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Third-Aurora/Transparent-Video-Shader/HEAD/Assets/XR.meta -------------------------------------------------------------------------------- /Assets/XR/XRGeneralSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Third-Aurora/Transparent-Video-Shader/HEAD/Assets/XR/XRGeneralSettings.asset -------------------------------------------------------------------------------- /Assets/XR/XRGeneralSettings.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Third-Aurora/Transparent-Video-Shader/HEAD/Assets/XR/XRGeneralSettings.asset.meta -------------------------------------------------------------------------------- /Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Third-Aurora/Transparent-Video-Shader/HEAD/Packages/manifest.json -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Third-Aurora/Transparent-Video-Shader/HEAD/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Third-Aurora/Transparent-Video-Shader/HEAD/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Third-Aurora/Transparent-Video-Shader/HEAD/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Third-Aurora/Transparent-Video-Shader/HEAD/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Third-Aurora/Transparent-Video-Shader/HEAD/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Third-Aurora/Transparent-Video-Shader/HEAD/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Third-Aurora/Transparent-Video-Shader/HEAD/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Third-Aurora/Transparent-Video-Shader/HEAD/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Third-Aurora/Transparent-Video-Shader/HEAD/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Third-Aurora/Transparent-Video-Shader/HEAD/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Third-Aurora/Transparent-Video-Shader/HEAD/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Third-Aurora/Transparent-Video-Shader/HEAD/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Third-Aurora/Transparent-Video-Shader/HEAD/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Third-Aurora/Transparent-Video-Shader/HEAD/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Third-Aurora/Transparent-Video-Shader/HEAD/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Third-Aurora/Transparent-Video-Shader/HEAD/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Third-Aurora/Transparent-Video-Shader/HEAD/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Third-Aurora/Transparent-Video-Shader/HEAD/ProjectSettings/XRSettings.asset --------------------------------------------------------------------------------