├── .gitignore ├── CesiumVRTutorial.uproject ├── Config ├── DefaultEditor.ini ├── DefaultEngine.ini ├── DefaultGame.ini ├── DefaultInput.ini └── HoloLens │ └── HoloLensEngine.ini ├── Content ├── CesiumSettings │ └── CesiumIonServers │ │ └── CesiumIonSaaS.uasset └── CesiumVRTutorial │ ├── BuildForQuest │ └── BuildForQuest.umap │ ├── DynamicUI │ ├── Blueprints │ │ ├── BP_DynamicWidget.uasset │ │ ├── BP_MetadataPopover.uasset │ │ ├── BP_MetadataTraceComponent.uasset │ │ ├── BP_VRPawn_Metadata.uasset │ │ └── WBP_Metadata.uasset │ └── DynamicUI.umap │ ├── Main │ ├── Blueprints │ │ └── BP_VRPawn_Main.uasset │ └── Main.umap │ ├── Movement │ ├── Blueprints │ │ ├── BP_VRMovementComponent.uasset │ │ └── BP_VRPawn_Movement.uasset │ └── Movement.umap │ ├── SavedLocations │ ├── Blueprints │ │ ├── BP_SavedLocationComponent.uasset │ │ ├── BP_SavedLocationMenu.uasset │ │ ├── BP_TutorialSaveGame.uasset │ │ ├── BP_VRPawn_SavedLocations.uasset │ │ ├── FSavedLocation.uasset │ │ ├── T_DeleteIcon.uasset │ │ ├── WBP_SavedLocationItem.uasset │ │ └── WBP_SavedLocationMenu.uasset │ └── SavedLocations.umap │ ├── Teleportation │ ├── Blueprints │ │ ├── BP_LineTraceRenderer.uasset │ │ ├── BP_VRPawn_Teleportation.uasset │ │ └── BP_VRTeleportComponent.uasset │ └── Teleportation.umap │ ├── ViewingTheGlobe │ ├── Blueprints │ │ ├── BP_EarthViewerComponent.uasset │ │ └── BP_VRPawn_ViewingTheGlobe.uasset │ └── ViewingTheGlobe.umap │ └── Vignette │ ├── Blueprints │ ├── BP_VRPawn_Vignette.uasset │ └── BP_VignetteComponent.uasset │ ├── Materials │ └── M_Vignette.uasset │ └── Vignette.umap ├── ContributionGuide.md ├── ISSUE_TEMPLATE └── 010_Tutorial-Release.md ├── Images ├── Cesium-VR-Headset.jpg ├── Cesium-for-Unreal-Logo-WhiteBGH.jpg ├── blueprint-comment-colors.png ├── blueprint-example.png ├── blueprintue-example.png └── blueprintue-howto.png ├── LICENSE ├── README.md ├── ReleaseGuide.md ├── Resources └── DeleteIcon.png ├── Test2 ├── Content │ ├── CesiumSettings │ │ └── CesiumIonServers │ │ │ └── CesiumIonSaaS.uasset │ └── Untitled.umap └── Saved │ ├── AutoScreenshot.png │ ├── Config │ ├── CrashReportClient │ │ └── UECC-Windows-D80EE06245D254A8EC331B8682FC8FA8 │ │ │ └── CrashReportClient.ini │ └── WorldState │ │ └── 1078873522.json │ ├── Logs │ └── Test2_2.log │ └── SourceControl │ └── UncontrolledChangelists.json ├── ThirdParty.json ├── controls.md └── pull_request_template.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/cesium-unreal-vr-tutorial/HEAD/.gitignore -------------------------------------------------------------------------------- /CesiumVRTutorial.uproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/cesium-unreal-vr-tutorial/HEAD/CesiumVRTutorial.uproject -------------------------------------------------------------------------------- /Config/DefaultEditor.ini: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Config/DefaultEngine.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/cesium-unreal-vr-tutorial/HEAD/Config/DefaultEngine.ini -------------------------------------------------------------------------------- /Config/DefaultGame.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/cesium-unreal-vr-tutorial/HEAD/Config/DefaultGame.ini -------------------------------------------------------------------------------- /Config/DefaultInput.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/cesium-unreal-vr-tutorial/HEAD/Config/DefaultInput.ini -------------------------------------------------------------------------------- /Config/HoloLens/HoloLensEngine.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/cesium-unreal-vr-tutorial/HEAD/Config/HoloLens/HoloLensEngine.ini -------------------------------------------------------------------------------- /Content/CesiumSettings/CesiumIonServers/CesiumIonSaaS.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/cesium-unreal-vr-tutorial/HEAD/Content/CesiumSettings/CesiumIonServers/CesiumIonSaaS.uasset -------------------------------------------------------------------------------- /Content/CesiumVRTutorial/BuildForQuest/BuildForQuest.umap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/cesium-unreal-vr-tutorial/HEAD/Content/CesiumVRTutorial/BuildForQuest/BuildForQuest.umap -------------------------------------------------------------------------------- /Content/CesiumVRTutorial/DynamicUI/Blueprints/BP_DynamicWidget.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/cesium-unreal-vr-tutorial/HEAD/Content/CesiumVRTutorial/DynamicUI/Blueprints/BP_DynamicWidget.uasset -------------------------------------------------------------------------------- /Content/CesiumVRTutorial/DynamicUI/Blueprints/BP_MetadataPopover.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/cesium-unreal-vr-tutorial/HEAD/Content/CesiumVRTutorial/DynamicUI/Blueprints/BP_MetadataPopover.uasset -------------------------------------------------------------------------------- /Content/CesiumVRTutorial/DynamicUI/Blueprints/BP_MetadataTraceComponent.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/cesium-unreal-vr-tutorial/HEAD/Content/CesiumVRTutorial/DynamicUI/Blueprints/BP_MetadataTraceComponent.uasset -------------------------------------------------------------------------------- /Content/CesiumVRTutorial/DynamicUI/Blueprints/BP_VRPawn_Metadata.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/cesium-unreal-vr-tutorial/HEAD/Content/CesiumVRTutorial/DynamicUI/Blueprints/BP_VRPawn_Metadata.uasset -------------------------------------------------------------------------------- /Content/CesiumVRTutorial/DynamicUI/Blueprints/WBP_Metadata.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/cesium-unreal-vr-tutorial/HEAD/Content/CesiumVRTutorial/DynamicUI/Blueprints/WBP_Metadata.uasset -------------------------------------------------------------------------------- /Content/CesiumVRTutorial/DynamicUI/DynamicUI.umap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/cesium-unreal-vr-tutorial/HEAD/Content/CesiumVRTutorial/DynamicUI/DynamicUI.umap -------------------------------------------------------------------------------- /Content/CesiumVRTutorial/Main/Blueprints/BP_VRPawn_Main.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/cesium-unreal-vr-tutorial/HEAD/Content/CesiumVRTutorial/Main/Blueprints/BP_VRPawn_Main.uasset -------------------------------------------------------------------------------- /Content/CesiumVRTutorial/Main/Main.umap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/cesium-unreal-vr-tutorial/HEAD/Content/CesiumVRTutorial/Main/Main.umap -------------------------------------------------------------------------------- /Content/CesiumVRTutorial/Movement/Blueprints/BP_VRMovementComponent.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/cesium-unreal-vr-tutorial/HEAD/Content/CesiumVRTutorial/Movement/Blueprints/BP_VRMovementComponent.uasset -------------------------------------------------------------------------------- /Content/CesiumVRTutorial/Movement/Blueprints/BP_VRPawn_Movement.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/cesium-unreal-vr-tutorial/HEAD/Content/CesiumVRTutorial/Movement/Blueprints/BP_VRPawn_Movement.uasset -------------------------------------------------------------------------------- /Content/CesiumVRTutorial/Movement/Movement.umap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/cesium-unreal-vr-tutorial/HEAD/Content/CesiumVRTutorial/Movement/Movement.umap -------------------------------------------------------------------------------- /Content/CesiumVRTutorial/SavedLocations/Blueprints/BP_SavedLocationComponent.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/cesium-unreal-vr-tutorial/HEAD/Content/CesiumVRTutorial/SavedLocations/Blueprints/BP_SavedLocationComponent.uasset -------------------------------------------------------------------------------- /Content/CesiumVRTutorial/SavedLocations/Blueprints/BP_SavedLocationMenu.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/cesium-unreal-vr-tutorial/HEAD/Content/CesiumVRTutorial/SavedLocations/Blueprints/BP_SavedLocationMenu.uasset -------------------------------------------------------------------------------- /Content/CesiumVRTutorial/SavedLocations/Blueprints/BP_TutorialSaveGame.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/cesium-unreal-vr-tutorial/HEAD/Content/CesiumVRTutorial/SavedLocations/Blueprints/BP_TutorialSaveGame.uasset -------------------------------------------------------------------------------- /Content/CesiumVRTutorial/SavedLocations/Blueprints/BP_VRPawn_SavedLocations.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/cesium-unreal-vr-tutorial/HEAD/Content/CesiumVRTutorial/SavedLocations/Blueprints/BP_VRPawn_SavedLocations.uasset -------------------------------------------------------------------------------- /Content/CesiumVRTutorial/SavedLocations/Blueprints/FSavedLocation.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/cesium-unreal-vr-tutorial/HEAD/Content/CesiumVRTutorial/SavedLocations/Blueprints/FSavedLocation.uasset -------------------------------------------------------------------------------- /Content/CesiumVRTutorial/SavedLocations/Blueprints/T_DeleteIcon.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/cesium-unreal-vr-tutorial/HEAD/Content/CesiumVRTutorial/SavedLocations/Blueprints/T_DeleteIcon.uasset -------------------------------------------------------------------------------- /Content/CesiumVRTutorial/SavedLocations/Blueprints/WBP_SavedLocationItem.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/cesium-unreal-vr-tutorial/HEAD/Content/CesiumVRTutorial/SavedLocations/Blueprints/WBP_SavedLocationItem.uasset -------------------------------------------------------------------------------- /Content/CesiumVRTutorial/SavedLocations/Blueprints/WBP_SavedLocationMenu.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/cesium-unreal-vr-tutorial/HEAD/Content/CesiumVRTutorial/SavedLocations/Blueprints/WBP_SavedLocationMenu.uasset -------------------------------------------------------------------------------- /Content/CesiumVRTutorial/SavedLocations/SavedLocations.umap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/cesium-unreal-vr-tutorial/HEAD/Content/CesiumVRTutorial/SavedLocations/SavedLocations.umap -------------------------------------------------------------------------------- /Content/CesiumVRTutorial/Teleportation/Blueprints/BP_LineTraceRenderer.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/cesium-unreal-vr-tutorial/HEAD/Content/CesiumVRTutorial/Teleportation/Blueprints/BP_LineTraceRenderer.uasset -------------------------------------------------------------------------------- /Content/CesiumVRTutorial/Teleportation/Blueprints/BP_VRPawn_Teleportation.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/cesium-unreal-vr-tutorial/HEAD/Content/CesiumVRTutorial/Teleportation/Blueprints/BP_VRPawn_Teleportation.uasset -------------------------------------------------------------------------------- /Content/CesiumVRTutorial/Teleportation/Blueprints/BP_VRTeleportComponent.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/cesium-unreal-vr-tutorial/HEAD/Content/CesiumVRTutorial/Teleportation/Blueprints/BP_VRTeleportComponent.uasset -------------------------------------------------------------------------------- /Content/CesiumVRTutorial/Teleportation/Teleportation.umap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/cesium-unreal-vr-tutorial/HEAD/Content/CesiumVRTutorial/Teleportation/Teleportation.umap -------------------------------------------------------------------------------- /Content/CesiumVRTutorial/ViewingTheGlobe/Blueprints/BP_EarthViewerComponent.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/cesium-unreal-vr-tutorial/HEAD/Content/CesiumVRTutorial/ViewingTheGlobe/Blueprints/BP_EarthViewerComponent.uasset -------------------------------------------------------------------------------- /Content/CesiumVRTutorial/ViewingTheGlobe/Blueprints/BP_VRPawn_ViewingTheGlobe.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/cesium-unreal-vr-tutorial/HEAD/Content/CesiumVRTutorial/ViewingTheGlobe/Blueprints/BP_VRPawn_ViewingTheGlobe.uasset -------------------------------------------------------------------------------- /Content/CesiumVRTutorial/ViewingTheGlobe/ViewingTheGlobe.umap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/cesium-unreal-vr-tutorial/HEAD/Content/CesiumVRTutorial/ViewingTheGlobe/ViewingTheGlobe.umap -------------------------------------------------------------------------------- /Content/CesiumVRTutorial/Vignette/Blueprints/BP_VRPawn_Vignette.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/cesium-unreal-vr-tutorial/HEAD/Content/CesiumVRTutorial/Vignette/Blueprints/BP_VRPawn_Vignette.uasset -------------------------------------------------------------------------------- /Content/CesiumVRTutorial/Vignette/Blueprints/BP_VignetteComponent.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/cesium-unreal-vr-tutorial/HEAD/Content/CesiumVRTutorial/Vignette/Blueprints/BP_VignetteComponent.uasset -------------------------------------------------------------------------------- /Content/CesiumVRTutorial/Vignette/Materials/M_Vignette.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/cesium-unreal-vr-tutorial/HEAD/Content/CesiumVRTutorial/Vignette/Materials/M_Vignette.uasset -------------------------------------------------------------------------------- /Content/CesiumVRTutorial/Vignette/Vignette.umap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/cesium-unreal-vr-tutorial/HEAD/Content/CesiumVRTutorial/Vignette/Vignette.umap -------------------------------------------------------------------------------- /ContributionGuide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/cesium-unreal-vr-tutorial/HEAD/ContributionGuide.md -------------------------------------------------------------------------------- /ISSUE_TEMPLATE/010_Tutorial-Release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/cesium-unreal-vr-tutorial/HEAD/ISSUE_TEMPLATE/010_Tutorial-Release.md -------------------------------------------------------------------------------- /Images/Cesium-VR-Headset.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/cesium-unreal-vr-tutorial/HEAD/Images/Cesium-VR-Headset.jpg -------------------------------------------------------------------------------- /Images/Cesium-for-Unreal-Logo-WhiteBGH.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/cesium-unreal-vr-tutorial/HEAD/Images/Cesium-for-Unreal-Logo-WhiteBGH.jpg -------------------------------------------------------------------------------- /Images/blueprint-comment-colors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/cesium-unreal-vr-tutorial/HEAD/Images/blueprint-comment-colors.png -------------------------------------------------------------------------------- /Images/blueprint-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/cesium-unreal-vr-tutorial/HEAD/Images/blueprint-example.png -------------------------------------------------------------------------------- /Images/blueprintue-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/cesium-unreal-vr-tutorial/HEAD/Images/blueprintue-example.png -------------------------------------------------------------------------------- /Images/blueprintue-howto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/cesium-unreal-vr-tutorial/HEAD/Images/blueprintue-howto.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/cesium-unreal-vr-tutorial/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/cesium-unreal-vr-tutorial/HEAD/README.md -------------------------------------------------------------------------------- /ReleaseGuide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/cesium-unreal-vr-tutorial/HEAD/ReleaseGuide.md -------------------------------------------------------------------------------- /Resources/DeleteIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/cesium-unreal-vr-tutorial/HEAD/Resources/DeleteIcon.png -------------------------------------------------------------------------------- /Test2/Content/CesiumSettings/CesiumIonServers/CesiumIonSaaS.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/cesium-unreal-vr-tutorial/HEAD/Test2/Content/CesiumSettings/CesiumIonServers/CesiumIonSaaS.uasset -------------------------------------------------------------------------------- /Test2/Content/Untitled.umap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/cesium-unreal-vr-tutorial/HEAD/Test2/Content/Untitled.umap -------------------------------------------------------------------------------- /Test2/Saved/AutoScreenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/cesium-unreal-vr-tutorial/HEAD/Test2/Saved/AutoScreenshot.png -------------------------------------------------------------------------------- /Test2/Saved/Config/CrashReportClient/UECC-Windows-D80EE06245D254A8EC331B8682FC8FA8/CrashReportClient.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/cesium-unreal-vr-tutorial/HEAD/Test2/Saved/Config/CrashReportClient/UECC-Windows-D80EE06245D254A8EC331B8682FC8FA8/CrashReportClient.ini -------------------------------------------------------------------------------- /Test2/Saved/Config/WorldState/1078873522.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/cesium-unreal-vr-tutorial/HEAD/Test2/Saved/Config/WorldState/1078873522.json -------------------------------------------------------------------------------- /Test2/Saved/Logs/Test2_2.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/cesium-unreal-vr-tutorial/HEAD/Test2/Saved/Logs/Test2_2.log -------------------------------------------------------------------------------- /Test2/Saved/SourceControl/UncontrolledChangelists.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/cesium-unreal-vr-tutorial/HEAD/Test2/Saved/SourceControl/UncontrolledChangelists.json -------------------------------------------------------------------------------- /ThirdParty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/cesium-unreal-vr-tutorial/HEAD/ThirdParty.json -------------------------------------------------------------------------------- /controls.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/cesium-unreal-vr-tutorial/HEAD/controls.md -------------------------------------------------------------------------------- /pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/cesium-unreal-vr-tutorial/HEAD/pull_request_template.md --------------------------------------------------------------------------------