├── .gitignore ├── Assets ├── Materials.meta ├── Materials │ ├── EffectMosaic.mat │ ├── EffectMosaic.mat.meta │ ├── ReflectionPanorama.mat │ ├── ReflectionPanorama.mat.meta │ ├── ReflectionPanoramaStandard.mat │ ├── ReflectionPanoramaStandard.mat.meta │ ├── Skybox.mat │ └── Skybox.mat.meta ├── Scenes.meta ├── Scenes │ ├── SampleScene.meta │ ├── SampleScene.unity │ ├── SampleScene.unity.meta │ └── SampleScene │ │ ├── LightingData.asset │ │ ├── LightingData.asset.meta │ │ ├── ReflectionProbe-0.exr │ │ └── ReflectionProbe-0.exr.meta ├── Scripts.meta ├── Scripts │ ├── AutoRotateAround.cs │ ├── AutoRotateAround.cs.meta │ ├── THETAVCamTextureManager.cs │ ├── THETAVCamTextureManager.cs.meta │ ├── THETAVCamTextureSkyBox.cs │ └── THETAVCamTextureSkyBox.cs.meta ├── Shaders.meta └── Shaders │ ├── Effect.meta │ ├── Effect │ ├── Mosaic.shader │ └── Mosaic.shader.meta │ ├── ReflectionTest.shader │ ├── ReflectionTest.shader.meta │ ├── ReflectionTestStandard.shader │ └── ReflectionTestStandard.shader.meta ├── LICENSE ├── Packages └── manifest.json ├── ProjectSettings ├── AudioManager.asset ├── ClusterInputManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── NavMeshAreas.asset ├── NetworkManager.asset ├── Physics2DSettings.asset ├── PresetManager.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── TagManager.asset ├── TimeManager.asset └── UnityConnectSettings.asset ├── README.md └── image.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaiware007/ThetaVReflectionTest/HEAD/.gitignore -------------------------------------------------------------------------------- /Assets/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaiware007/ThetaVReflectionTest/HEAD/Assets/Materials.meta -------------------------------------------------------------------------------- /Assets/Materials/EffectMosaic.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaiware007/ThetaVReflectionTest/HEAD/Assets/Materials/EffectMosaic.mat -------------------------------------------------------------------------------- /Assets/Materials/EffectMosaic.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaiware007/ThetaVReflectionTest/HEAD/Assets/Materials/EffectMosaic.mat.meta -------------------------------------------------------------------------------- /Assets/Materials/ReflectionPanorama.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaiware007/ThetaVReflectionTest/HEAD/Assets/Materials/ReflectionPanorama.mat -------------------------------------------------------------------------------- /Assets/Materials/ReflectionPanorama.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaiware007/ThetaVReflectionTest/HEAD/Assets/Materials/ReflectionPanorama.mat.meta -------------------------------------------------------------------------------- /Assets/Materials/ReflectionPanoramaStandard.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaiware007/ThetaVReflectionTest/HEAD/Assets/Materials/ReflectionPanoramaStandard.mat -------------------------------------------------------------------------------- /Assets/Materials/ReflectionPanoramaStandard.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaiware007/ThetaVReflectionTest/HEAD/Assets/Materials/ReflectionPanoramaStandard.mat.meta -------------------------------------------------------------------------------- /Assets/Materials/Skybox.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaiware007/ThetaVReflectionTest/HEAD/Assets/Materials/Skybox.mat -------------------------------------------------------------------------------- /Assets/Materials/Skybox.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaiware007/ThetaVReflectionTest/HEAD/Assets/Materials/Skybox.mat.meta -------------------------------------------------------------------------------- /Assets/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaiware007/ThetaVReflectionTest/HEAD/Assets/Scenes.meta -------------------------------------------------------------------------------- /Assets/Scenes/SampleScene.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaiware007/ThetaVReflectionTest/HEAD/Assets/Scenes/SampleScene.meta -------------------------------------------------------------------------------- /Assets/Scenes/SampleScene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaiware007/ThetaVReflectionTest/HEAD/Assets/Scenes/SampleScene.unity -------------------------------------------------------------------------------- /Assets/Scenes/SampleScene.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaiware007/ThetaVReflectionTest/HEAD/Assets/Scenes/SampleScene.unity.meta -------------------------------------------------------------------------------- /Assets/Scenes/SampleScene/LightingData.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaiware007/ThetaVReflectionTest/HEAD/Assets/Scenes/SampleScene/LightingData.asset -------------------------------------------------------------------------------- /Assets/Scenes/SampleScene/LightingData.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaiware007/ThetaVReflectionTest/HEAD/Assets/Scenes/SampleScene/LightingData.asset.meta -------------------------------------------------------------------------------- /Assets/Scenes/SampleScene/ReflectionProbe-0.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaiware007/ThetaVReflectionTest/HEAD/Assets/Scenes/SampleScene/ReflectionProbe-0.exr -------------------------------------------------------------------------------- /Assets/Scenes/SampleScene/ReflectionProbe-0.exr.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaiware007/ThetaVReflectionTest/HEAD/Assets/Scenes/SampleScene/ReflectionProbe-0.exr.meta -------------------------------------------------------------------------------- /Assets/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaiware007/ThetaVReflectionTest/HEAD/Assets/Scripts.meta -------------------------------------------------------------------------------- /Assets/Scripts/AutoRotateAround.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaiware007/ThetaVReflectionTest/HEAD/Assets/Scripts/AutoRotateAround.cs -------------------------------------------------------------------------------- /Assets/Scripts/AutoRotateAround.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaiware007/ThetaVReflectionTest/HEAD/Assets/Scripts/AutoRotateAround.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/THETAVCamTextureManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaiware007/ThetaVReflectionTest/HEAD/Assets/Scripts/THETAVCamTextureManager.cs -------------------------------------------------------------------------------- /Assets/Scripts/THETAVCamTextureManager.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaiware007/ThetaVReflectionTest/HEAD/Assets/Scripts/THETAVCamTextureManager.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/THETAVCamTextureSkyBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaiware007/ThetaVReflectionTest/HEAD/Assets/Scripts/THETAVCamTextureSkyBox.cs -------------------------------------------------------------------------------- /Assets/Scripts/THETAVCamTextureSkyBox.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaiware007/ThetaVReflectionTest/HEAD/Assets/Scripts/THETAVCamTextureSkyBox.cs.meta -------------------------------------------------------------------------------- /Assets/Shaders.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaiware007/ThetaVReflectionTest/HEAD/Assets/Shaders.meta -------------------------------------------------------------------------------- /Assets/Shaders/Effect.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaiware007/ThetaVReflectionTest/HEAD/Assets/Shaders/Effect.meta -------------------------------------------------------------------------------- /Assets/Shaders/Effect/Mosaic.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaiware007/ThetaVReflectionTest/HEAD/Assets/Shaders/Effect/Mosaic.shader -------------------------------------------------------------------------------- /Assets/Shaders/Effect/Mosaic.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaiware007/ThetaVReflectionTest/HEAD/Assets/Shaders/Effect/Mosaic.shader.meta -------------------------------------------------------------------------------- /Assets/Shaders/ReflectionTest.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaiware007/ThetaVReflectionTest/HEAD/Assets/Shaders/ReflectionTest.shader -------------------------------------------------------------------------------- /Assets/Shaders/ReflectionTest.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaiware007/ThetaVReflectionTest/HEAD/Assets/Shaders/ReflectionTest.shader.meta -------------------------------------------------------------------------------- /Assets/Shaders/ReflectionTestStandard.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaiware007/ThetaVReflectionTest/HEAD/Assets/Shaders/ReflectionTestStandard.shader -------------------------------------------------------------------------------- /Assets/Shaders/ReflectionTestStandard.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaiware007/ThetaVReflectionTest/HEAD/Assets/Shaders/ReflectionTestStandard.shader.meta -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaiware007/ThetaVReflectionTest/HEAD/LICENSE -------------------------------------------------------------------------------- /Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaiware007/ThetaVReflectionTest/HEAD/Packages/manifest.json -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaiware007/ThetaVReflectionTest/HEAD/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaiware007/ThetaVReflectionTest/HEAD/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaiware007/ThetaVReflectionTest/HEAD/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaiware007/ThetaVReflectionTest/HEAD/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaiware007/ThetaVReflectionTest/HEAD/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaiware007/ThetaVReflectionTest/HEAD/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaiware007/ThetaVReflectionTest/HEAD/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaiware007/ThetaVReflectionTest/HEAD/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaiware007/ThetaVReflectionTest/HEAD/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaiware007/ThetaVReflectionTest/HEAD/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaiware007/ThetaVReflectionTest/HEAD/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaiware007/ThetaVReflectionTest/HEAD/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2018.2.9f1 2 | -------------------------------------------------------------------------------- /ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaiware007/ThetaVReflectionTest/HEAD/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaiware007/ThetaVReflectionTest/HEAD/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaiware007/ThetaVReflectionTest/HEAD/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaiware007/ThetaVReflectionTest/HEAD/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaiware007/ThetaVReflectionTest/HEAD/README.md -------------------------------------------------------------------------------- /image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaiware007/ThetaVReflectionTest/HEAD/image.png --------------------------------------------------------------------------------