├── .gitignore ├── Assets ├── BoxHeader.cs ├── BoxHeader.cs.meta ├── FisheyeVR180.mat ├── FisheyeVR180.mat.meta ├── FisheyeVR180.renderTexture ├── FisheyeVR180.renderTexture.meta ├── MeshProjectionBox.cs ├── MeshProjectionBox.cs.meta ├── StereoView.shader ├── StereoView.shader.meta ├── VR180Mesh.cs ├── VR180Mesh.cs.meta ├── main.unity └── main.unity.meta ├── LICENSE ├── ProjectSettings ├── AudioManager.asset ├── ClusterInputManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── NavMeshAreas.asset ├── NetworkManager.asset ├── Physics2DSettings.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── TagManager.asset ├── TimeManager.asset └── UnityConnectSettings.asset ├── README.md └── UnityPackageManager └── manifest.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosoft/VR180MeshProjection/HEAD/.gitignore -------------------------------------------------------------------------------- /Assets/BoxHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosoft/VR180MeshProjection/HEAD/Assets/BoxHeader.cs -------------------------------------------------------------------------------- /Assets/BoxHeader.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosoft/VR180MeshProjection/HEAD/Assets/BoxHeader.cs.meta -------------------------------------------------------------------------------- /Assets/FisheyeVR180.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosoft/VR180MeshProjection/HEAD/Assets/FisheyeVR180.mat -------------------------------------------------------------------------------- /Assets/FisheyeVR180.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosoft/VR180MeshProjection/HEAD/Assets/FisheyeVR180.mat.meta -------------------------------------------------------------------------------- /Assets/FisheyeVR180.renderTexture: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosoft/VR180MeshProjection/HEAD/Assets/FisheyeVR180.renderTexture -------------------------------------------------------------------------------- /Assets/FisheyeVR180.renderTexture.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosoft/VR180MeshProjection/HEAD/Assets/FisheyeVR180.renderTexture.meta -------------------------------------------------------------------------------- /Assets/MeshProjectionBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosoft/VR180MeshProjection/HEAD/Assets/MeshProjectionBox.cs -------------------------------------------------------------------------------- /Assets/MeshProjectionBox.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosoft/VR180MeshProjection/HEAD/Assets/MeshProjectionBox.cs.meta -------------------------------------------------------------------------------- /Assets/StereoView.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosoft/VR180MeshProjection/HEAD/Assets/StereoView.shader -------------------------------------------------------------------------------- /Assets/StereoView.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosoft/VR180MeshProjection/HEAD/Assets/StereoView.shader.meta -------------------------------------------------------------------------------- /Assets/VR180Mesh.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosoft/VR180MeshProjection/HEAD/Assets/VR180Mesh.cs -------------------------------------------------------------------------------- /Assets/VR180Mesh.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosoft/VR180MeshProjection/HEAD/Assets/VR180Mesh.cs.meta -------------------------------------------------------------------------------- /Assets/main.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosoft/VR180MeshProjection/HEAD/Assets/main.unity -------------------------------------------------------------------------------- /Assets/main.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosoft/VR180MeshProjection/HEAD/Assets/main.unity.meta -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosoft/VR180MeshProjection/HEAD/LICENSE -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosoft/VR180MeshProjection/HEAD/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosoft/VR180MeshProjection/HEAD/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosoft/VR180MeshProjection/HEAD/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosoft/VR180MeshProjection/HEAD/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosoft/VR180MeshProjection/HEAD/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosoft/VR180MeshProjection/HEAD/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosoft/VR180MeshProjection/HEAD/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosoft/VR180MeshProjection/HEAD/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosoft/VR180MeshProjection/HEAD/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosoft/VR180MeshProjection/HEAD/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosoft/VR180MeshProjection/HEAD/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2017.4.3f1 2 | -------------------------------------------------------------------------------- /ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosoft/VR180MeshProjection/HEAD/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosoft/VR180MeshProjection/HEAD/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosoft/VR180MeshProjection/HEAD/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosoft/VR180MeshProjection/HEAD/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosoft/VR180MeshProjection/HEAD/README.md -------------------------------------------------------------------------------- /UnityPackageManager/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | } 4 | } 5 | --------------------------------------------------------------------------------