├── .gitattributes ├── .gitignore ├── Assets ├── GeoVfx.meta ├── GeoVfx │ ├── Editor.meta │ ├── Editor │ │ ├── GeoDataImporter.cs │ │ └── GeoDataImporter.cs.meta │ ├── Runtime.meta │ └── Runtime │ │ ├── GeoData.cs │ │ ├── GeoData.cs.meta │ │ ├── VFXGeoDataBinder.cs │ │ └── VFXGeoDataBinder.cs.meta ├── Misc.meta ├── Misc │ ├── CameraController.cs │ ├── CameraController.cs.meta │ ├── Cube.obj │ ├── Cube.obj.meta │ ├── GlobeController.cs │ ├── GlobeController.cs.meta │ ├── Ground.mat │ ├── Ground.mat.meta │ ├── Select Four.vfxoperator │ ├── Select Four.vfxoperator.meta │ ├── Set Angles By UV.vfxblock │ ├── Set Angles By UV.vfxblock.meta │ ├── Set Position By UV.vfxblock │ └── Set Position By UV.vfxblock.meta ├── Population.meta ├── Population.unity ├── Population.unity.meta ├── Population │ ├── Population.vfx │ ├── Population.vfx.meta │ ├── gpw_v4_population_count_rev11_2020_15_min.geodata │ └── gpw_v4_population_count_rev11_2020_15_min.geodata.meta ├── Temperature.meta ├── Temperature.unity ├── Temperature.unity.meta ├── Temperature │ ├── MOD_LSTD_CLIM_M_2001-01-01_rgb_1440x720.FLOAT.geodata │ ├── MOD_LSTD_CLIM_M_2001-01-01_rgb_1440x720.FLOAT.geodata.meta │ ├── MOD_LSTD_CLIM_M_2001-04-01_rgb_1440x720.FLOAT.geodata │ ├── MOD_LSTD_CLIM_M_2001-04-01_rgb_1440x720.FLOAT.geodata.meta │ ├── MOD_LSTD_CLIM_M_2001-07-01_rgb_1440x720.FLOAT.geodata │ ├── MOD_LSTD_CLIM_M_2001-07-01_rgb_1440x720.FLOAT.geodata.meta │ ├── MOD_LSTD_CLIM_M_2001-10-01_rgb_1440x720.FLOAT.geodata │ ├── MOD_LSTD_CLIM_M_2001-10-01_rgb_1440x720.FLOAT.geodata.meta │ ├── Temperature.vfx │ └── Temperature.vfx.meta ├── URP.meta └── URP │ ├── DefaultProfile.asset │ ├── DefaultProfile.asset.meta │ ├── GlobalSettings.asset │ ├── GlobalSettings.asset.meta │ ├── Renderer.asset │ ├── Renderer.asset.meta │ ├── URP.asset │ └── URP.asset.meta ├── Packages ├── manifest.json └── packages-lock.json ├── ProjectSettings ├── AudioManager.asset ├── BurstAotSettings_iOS.json ├── ClusterInputManager.asset ├── CommonBurstAotSettings.json ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── HDRPProjectSettings.asset ├── InputManager.asset ├── MemorySettings.asset ├── MultiplayerManager.asset ├── NavMeshAreas.asset ├── PackageManagerSettings.asset ├── Physics2DSettings.asset ├── PresetManager.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── SceneTemplateSettings.json ├── ShaderGraphSettings.asset ├── TagManager.asset ├── TimeManager.asset ├── URPProjectSettings.asset ├── UnityConnectSettings.asset ├── VFXManager.asset ├── VersionControlSettings.asset └── XRSettings.asset └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/GeoVfx/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/GeoVfx/HEAD/.gitignore -------------------------------------------------------------------------------- /Assets/GeoVfx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/GeoVfx/HEAD/Assets/GeoVfx.meta -------------------------------------------------------------------------------- /Assets/GeoVfx/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/GeoVfx/HEAD/Assets/GeoVfx/Editor.meta -------------------------------------------------------------------------------- /Assets/GeoVfx/Editor/GeoDataImporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/GeoVfx/HEAD/Assets/GeoVfx/Editor/GeoDataImporter.cs -------------------------------------------------------------------------------- /Assets/GeoVfx/Editor/GeoDataImporter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/GeoVfx/HEAD/Assets/GeoVfx/Editor/GeoDataImporter.cs.meta -------------------------------------------------------------------------------- /Assets/GeoVfx/Runtime.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/GeoVfx/HEAD/Assets/GeoVfx/Runtime.meta -------------------------------------------------------------------------------- /Assets/GeoVfx/Runtime/GeoData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/GeoVfx/HEAD/Assets/GeoVfx/Runtime/GeoData.cs -------------------------------------------------------------------------------- /Assets/GeoVfx/Runtime/GeoData.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/GeoVfx/HEAD/Assets/GeoVfx/Runtime/GeoData.cs.meta -------------------------------------------------------------------------------- /Assets/GeoVfx/Runtime/VFXGeoDataBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/GeoVfx/HEAD/Assets/GeoVfx/Runtime/VFXGeoDataBinder.cs -------------------------------------------------------------------------------- /Assets/GeoVfx/Runtime/VFXGeoDataBinder.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/GeoVfx/HEAD/Assets/GeoVfx/Runtime/VFXGeoDataBinder.cs.meta -------------------------------------------------------------------------------- /Assets/Misc.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/GeoVfx/HEAD/Assets/Misc.meta -------------------------------------------------------------------------------- /Assets/Misc/CameraController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/GeoVfx/HEAD/Assets/Misc/CameraController.cs -------------------------------------------------------------------------------- /Assets/Misc/CameraController.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/GeoVfx/HEAD/Assets/Misc/CameraController.cs.meta -------------------------------------------------------------------------------- /Assets/Misc/Cube.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/GeoVfx/HEAD/Assets/Misc/Cube.obj -------------------------------------------------------------------------------- /Assets/Misc/Cube.obj.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/GeoVfx/HEAD/Assets/Misc/Cube.obj.meta -------------------------------------------------------------------------------- /Assets/Misc/GlobeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/GeoVfx/HEAD/Assets/Misc/GlobeController.cs -------------------------------------------------------------------------------- /Assets/Misc/GlobeController.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/GeoVfx/HEAD/Assets/Misc/GlobeController.cs.meta -------------------------------------------------------------------------------- /Assets/Misc/Ground.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/GeoVfx/HEAD/Assets/Misc/Ground.mat -------------------------------------------------------------------------------- /Assets/Misc/Ground.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/GeoVfx/HEAD/Assets/Misc/Ground.mat.meta -------------------------------------------------------------------------------- /Assets/Misc/Select Four.vfxoperator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/GeoVfx/HEAD/Assets/Misc/Select Four.vfxoperator -------------------------------------------------------------------------------- /Assets/Misc/Select Four.vfxoperator.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/GeoVfx/HEAD/Assets/Misc/Select Four.vfxoperator.meta -------------------------------------------------------------------------------- /Assets/Misc/Set Angles By UV.vfxblock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/GeoVfx/HEAD/Assets/Misc/Set Angles By UV.vfxblock -------------------------------------------------------------------------------- /Assets/Misc/Set Angles By UV.vfxblock.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/GeoVfx/HEAD/Assets/Misc/Set Angles By UV.vfxblock.meta -------------------------------------------------------------------------------- /Assets/Misc/Set Position By UV.vfxblock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/GeoVfx/HEAD/Assets/Misc/Set Position By UV.vfxblock -------------------------------------------------------------------------------- /Assets/Misc/Set Position By UV.vfxblock.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/GeoVfx/HEAD/Assets/Misc/Set Position By UV.vfxblock.meta -------------------------------------------------------------------------------- /Assets/Population.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/GeoVfx/HEAD/Assets/Population.meta -------------------------------------------------------------------------------- /Assets/Population.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/GeoVfx/HEAD/Assets/Population.unity -------------------------------------------------------------------------------- /Assets/Population.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/GeoVfx/HEAD/Assets/Population.unity.meta -------------------------------------------------------------------------------- /Assets/Population/Population.vfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/GeoVfx/HEAD/Assets/Population/Population.vfx -------------------------------------------------------------------------------- /Assets/Population/Population.vfx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/GeoVfx/HEAD/Assets/Population/Population.vfx.meta -------------------------------------------------------------------------------- /Assets/Population/gpw_v4_population_count_rev11_2020_15_min.geodata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/GeoVfx/HEAD/Assets/Population/gpw_v4_population_count_rev11_2020_15_min.geodata -------------------------------------------------------------------------------- /Assets/Population/gpw_v4_population_count_rev11_2020_15_min.geodata.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/GeoVfx/HEAD/Assets/Population/gpw_v4_population_count_rev11_2020_15_min.geodata.meta -------------------------------------------------------------------------------- /Assets/Temperature.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/GeoVfx/HEAD/Assets/Temperature.meta -------------------------------------------------------------------------------- /Assets/Temperature.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/GeoVfx/HEAD/Assets/Temperature.unity -------------------------------------------------------------------------------- /Assets/Temperature.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/GeoVfx/HEAD/Assets/Temperature.unity.meta -------------------------------------------------------------------------------- /Assets/Temperature/MOD_LSTD_CLIM_M_2001-01-01_rgb_1440x720.FLOAT.geodata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/GeoVfx/HEAD/Assets/Temperature/MOD_LSTD_CLIM_M_2001-01-01_rgb_1440x720.FLOAT.geodata -------------------------------------------------------------------------------- /Assets/Temperature/MOD_LSTD_CLIM_M_2001-01-01_rgb_1440x720.FLOAT.geodata.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/GeoVfx/HEAD/Assets/Temperature/MOD_LSTD_CLIM_M_2001-01-01_rgb_1440x720.FLOAT.geodata.meta -------------------------------------------------------------------------------- /Assets/Temperature/MOD_LSTD_CLIM_M_2001-04-01_rgb_1440x720.FLOAT.geodata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/GeoVfx/HEAD/Assets/Temperature/MOD_LSTD_CLIM_M_2001-04-01_rgb_1440x720.FLOAT.geodata -------------------------------------------------------------------------------- /Assets/Temperature/MOD_LSTD_CLIM_M_2001-04-01_rgb_1440x720.FLOAT.geodata.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/GeoVfx/HEAD/Assets/Temperature/MOD_LSTD_CLIM_M_2001-04-01_rgb_1440x720.FLOAT.geodata.meta -------------------------------------------------------------------------------- /Assets/Temperature/MOD_LSTD_CLIM_M_2001-07-01_rgb_1440x720.FLOAT.geodata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/GeoVfx/HEAD/Assets/Temperature/MOD_LSTD_CLIM_M_2001-07-01_rgb_1440x720.FLOAT.geodata -------------------------------------------------------------------------------- /Assets/Temperature/MOD_LSTD_CLIM_M_2001-07-01_rgb_1440x720.FLOAT.geodata.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/GeoVfx/HEAD/Assets/Temperature/MOD_LSTD_CLIM_M_2001-07-01_rgb_1440x720.FLOAT.geodata.meta -------------------------------------------------------------------------------- /Assets/Temperature/MOD_LSTD_CLIM_M_2001-10-01_rgb_1440x720.FLOAT.geodata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/GeoVfx/HEAD/Assets/Temperature/MOD_LSTD_CLIM_M_2001-10-01_rgb_1440x720.FLOAT.geodata -------------------------------------------------------------------------------- /Assets/Temperature/MOD_LSTD_CLIM_M_2001-10-01_rgb_1440x720.FLOAT.geodata.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/GeoVfx/HEAD/Assets/Temperature/MOD_LSTD_CLIM_M_2001-10-01_rgb_1440x720.FLOAT.geodata.meta -------------------------------------------------------------------------------- /Assets/Temperature/Temperature.vfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/GeoVfx/HEAD/Assets/Temperature/Temperature.vfx -------------------------------------------------------------------------------- /Assets/Temperature/Temperature.vfx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/GeoVfx/HEAD/Assets/Temperature/Temperature.vfx.meta -------------------------------------------------------------------------------- /Assets/URP.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/GeoVfx/HEAD/Assets/URP.meta -------------------------------------------------------------------------------- /Assets/URP/DefaultProfile.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/GeoVfx/HEAD/Assets/URP/DefaultProfile.asset -------------------------------------------------------------------------------- /Assets/URP/DefaultProfile.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/GeoVfx/HEAD/Assets/URP/DefaultProfile.asset.meta -------------------------------------------------------------------------------- /Assets/URP/GlobalSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/GeoVfx/HEAD/Assets/URP/GlobalSettings.asset -------------------------------------------------------------------------------- /Assets/URP/GlobalSettings.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/GeoVfx/HEAD/Assets/URP/GlobalSettings.asset.meta -------------------------------------------------------------------------------- /Assets/URP/Renderer.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/GeoVfx/HEAD/Assets/URP/Renderer.asset -------------------------------------------------------------------------------- /Assets/URP/Renderer.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/GeoVfx/HEAD/Assets/URP/Renderer.asset.meta -------------------------------------------------------------------------------- /Assets/URP/URP.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/GeoVfx/HEAD/Assets/URP/URP.asset -------------------------------------------------------------------------------- /Assets/URP/URP.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/GeoVfx/HEAD/Assets/URP/URP.asset.meta -------------------------------------------------------------------------------- /Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/GeoVfx/HEAD/Packages/manifest.json -------------------------------------------------------------------------------- /Packages/packages-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/GeoVfx/HEAD/Packages/packages-lock.json -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/GeoVfx/HEAD/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /ProjectSettings/BurstAotSettings_iOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/GeoVfx/HEAD/ProjectSettings/BurstAotSettings_iOS.json -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/GeoVfx/HEAD/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/CommonBurstAotSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/GeoVfx/HEAD/ProjectSettings/CommonBurstAotSettings.json -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/GeoVfx/HEAD/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/GeoVfx/HEAD/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/GeoVfx/HEAD/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/GeoVfx/HEAD/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/HDRPProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/GeoVfx/HEAD/ProjectSettings/HDRPProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/GeoVfx/HEAD/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/MemorySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/GeoVfx/HEAD/ProjectSettings/MemorySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/MultiplayerManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/GeoVfx/HEAD/ProjectSettings/MultiplayerManager.asset -------------------------------------------------------------------------------- /ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/GeoVfx/HEAD/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /ProjectSettings/PackageManagerSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/GeoVfx/HEAD/ProjectSettings/PackageManagerSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/GeoVfx/HEAD/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/GeoVfx/HEAD/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/GeoVfx/HEAD/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/GeoVfx/HEAD/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/GeoVfx/HEAD/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/SceneTemplateSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/GeoVfx/HEAD/ProjectSettings/SceneTemplateSettings.json -------------------------------------------------------------------------------- /ProjectSettings/ShaderGraphSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/GeoVfx/HEAD/ProjectSettings/ShaderGraphSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/GeoVfx/HEAD/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/GeoVfx/HEAD/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /ProjectSettings/URPProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/GeoVfx/HEAD/ProjectSettings/URPProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/GeoVfx/HEAD/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/GeoVfx/HEAD/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /ProjectSettings/VersionControlSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/GeoVfx/HEAD/ProjectSettings/VersionControlSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/GeoVfx/HEAD/ProjectSettings/XRSettings.asset -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/GeoVfx/HEAD/README.md --------------------------------------------------------------------------------