├── .gitattributes ├── .gitignore ├── Content └── Blueprints │ ├── ImportMap │ ├── Mapbox_BP.uasset │ └── old │ │ ├── ImportLines.uasset │ │ └── TestMapImport.uasset │ └── TrackGenerator │ ├── Blueprints │ ├── BP_Road_Generator.uasset │ ├── BP_TrackGenerator.uasset │ └── BP_TrackGenerator_2.uasset │ ├── Data │ ├── E_GaurdRailLengths.uasset │ ├── E_TrackMeshType.uasset │ └── RoadData.uasset │ ├── Maps │ └── ShowCase.umap │ ├── Materials │ ├── M_Concrete_Panels.uasset │ ├── M_Metal_Burnished_Steel.uasset │ ├── Road.uasset │ └── Road_Inst.uasset │ ├── Props │ ├── L_GuardRail.uasset │ ├── R_GuardRail.uasset │ └── RoadMesh.uasset │ └── Textures │ ├── RoadTexture_BaseColor_Alpha.uasset │ ├── RoadTexture_Normal_Alpha.uasset │ ├── T_Concrete_Panels_D.uasset │ ├── T_Concrete_Panels_N.uasset │ ├── T_MacroVariation.uasset │ ├── T_Metal_Aluminum_D.uasset │ ├── T_Metal_Gold_N.uasset │ └── T_Perlin_Noise_M.uasset ├── Docs └── BBSizeInKM.png ├── LICENSE ├── README.md ├── Resources ├── main.py ├── set_editor_property.py └── terrainmagic.py ├── Source ├── UnrealMapboxBridge │ ├── Private │ │ ├── EditorLandscapeLibrary.cpp │ │ ├── GeoJsonStruct.cpp │ │ ├── GeoJsonStructGeneratorComponent.cpp │ │ └── UnrealMapboxBridge.cpp │ ├── Public │ │ ├── EditorLandscapeLibrary.h │ │ ├── GeoJsonStruct.h │ │ ├── GeoJsonStructGeneratorComponent.h │ │ └── UnrealMapboxBridge.h │ └── UnrealMapboxBridge.Build.cs └── nlohmann │ ├── adl_serializer.hpp │ ├── byte_container_with_subtype.hpp │ ├── detail │ ├── conversions │ │ ├── from_json.hpp │ │ ├── to_chars.hpp │ │ └── to_json.hpp │ ├── exceptions.hpp │ ├── hash.hpp │ ├── input │ │ ├── binary_reader.hpp │ │ ├── input_adapters.hpp │ │ ├── json_sax.hpp │ │ ├── lexer.hpp │ │ ├── parser.hpp │ │ └── position_t.hpp │ ├── iterators │ │ ├── internal_iterator.hpp │ │ ├── iter_impl.hpp │ │ ├── iteration_proxy.hpp │ │ ├── iterator_traits.hpp │ │ ├── json_reverse_iterator.hpp │ │ └── primitive_iterator.hpp │ ├── json_pointer.hpp │ ├── json_ref.hpp │ ├── macro_scope.hpp │ ├── macro_unscope.hpp │ ├── meta │ │ ├── call_std │ │ │ ├── begin.hpp │ │ │ └── end.hpp │ │ ├── cpp_future.hpp │ │ ├── detected.hpp │ │ ├── identity_tag.hpp │ │ ├── is_sax.hpp │ │ ├── type_traits.hpp │ │ └── void_t.hpp │ ├── output │ │ ├── binary_writer.hpp │ │ ├── output_adapters.hpp │ │ └── serializer.hpp │ ├── string_escape.hpp │ └── value_t.hpp │ ├── json.hpp │ ├── json_fwd.hpp │ ├── ordered_map.hpp │ └── thirdparty │ └── hedley │ ├── hedley.hpp │ └── hedley_undef.hpp └── UnrealMapboxBridge.uplugin /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UnrealMapboxBridgePlugin/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UnrealMapboxBridgePlugin/HEAD/.gitignore -------------------------------------------------------------------------------- /Content/Blueprints/ImportMap/Mapbox_BP.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UnrealMapboxBridgePlugin/HEAD/Content/Blueprints/ImportMap/Mapbox_BP.uasset -------------------------------------------------------------------------------- /Content/Blueprints/ImportMap/old/ImportLines.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UnrealMapboxBridgePlugin/HEAD/Content/Blueprints/ImportMap/old/ImportLines.uasset -------------------------------------------------------------------------------- /Content/Blueprints/ImportMap/old/TestMapImport.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UnrealMapboxBridgePlugin/HEAD/Content/Blueprints/ImportMap/old/TestMapImport.uasset -------------------------------------------------------------------------------- /Content/Blueprints/TrackGenerator/Blueprints/BP_Road_Generator.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UnrealMapboxBridgePlugin/HEAD/Content/Blueprints/TrackGenerator/Blueprints/BP_Road_Generator.uasset -------------------------------------------------------------------------------- /Content/Blueprints/TrackGenerator/Blueprints/BP_TrackGenerator.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UnrealMapboxBridgePlugin/HEAD/Content/Blueprints/TrackGenerator/Blueprints/BP_TrackGenerator.uasset -------------------------------------------------------------------------------- /Content/Blueprints/TrackGenerator/Blueprints/BP_TrackGenerator_2.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UnrealMapboxBridgePlugin/HEAD/Content/Blueprints/TrackGenerator/Blueprints/BP_TrackGenerator_2.uasset -------------------------------------------------------------------------------- /Content/Blueprints/TrackGenerator/Data/E_GaurdRailLengths.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UnrealMapboxBridgePlugin/HEAD/Content/Blueprints/TrackGenerator/Data/E_GaurdRailLengths.uasset -------------------------------------------------------------------------------- /Content/Blueprints/TrackGenerator/Data/E_TrackMeshType.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UnrealMapboxBridgePlugin/HEAD/Content/Blueprints/TrackGenerator/Data/E_TrackMeshType.uasset -------------------------------------------------------------------------------- /Content/Blueprints/TrackGenerator/Data/RoadData.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UnrealMapboxBridgePlugin/HEAD/Content/Blueprints/TrackGenerator/Data/RoadData.uasset -------------------------------------------------------------------------------- /Content/Blueprints/TrackGenerator/Maps/ShowCase.umap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UnrealMapboxBridgePlugin/HEAD/Content/Blueprints/TrackGenerator/Maps/ShowCase.umap -------------------------------------------------------------------------------- /Content/Blueprints/TrackGenerator/Materials/M_Concrete_Panels.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UnrealMapboxBridgePlugin/HEAD/Content/Blueprints/TrackGenerator/Materials/M_Concrete_Panels.uasset -------------------------------------------------------------------------------- /Content/Blueprints/TrackGenerator/Materials/M_Metal_Burnished_Steel.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UnrealMapboxBridgePlugin/HEAD/Content/Blueprints/TrackGenerator/Materials/M_Metal_Burnished_Steel.uasset -------------------------------------------------------------------------------- /Content/Blueprints/TrackGenerator/Materials/Road.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UnrealMapboxBridgePlugin/HEAD/Content/Blueprints/TrackGenerator/Materials/Road.uasset -------------------------------------------------------------------------------- /Content/Blueprints/TrackGenerator/Materials/Road_Inst.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UnrealMapboxBridgePlugin/HEAD/Content/Blueprints/TrackGenerator/Materials/Road_Inst.uasset -------------------------------------------------------------------------------- /Content/Blueprints/TrackGenerator/Props/L_GuardRail.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UnrealMapboxBridgePlugin/HEAD/Content/Blueprints/TrackGenerator/Props/L_GuardRail.uasset -------------------------------------------------------------------------------- /Content/Blueprints/TrackGenerator/Props/R_GuardRail.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UnrealMapboxBridgePlugin/HEAD/Content/Blueprints/TrackGenerator/Props/R_GuardRail.uasset -------------------------------------------------------------------------------- /Content/Blueprints/TrackGenerator/Props/RoadMesh.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UnrealMapboxBridgePlugin/HEAD/Content/Blueprints/TrackGenerator/Props/RoadMesh.uasset -------------------------------------------------------------------------------- /Content/Blueprints/TrackGenerator/Textures/RoadTexture_BaseColor_Alpha.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UnrealMapboxBridgePlugin/HEAD/Content/Blueprints/TrackGenerator/Textures/RoadTexture_BaseColor_Alpha.uasset -------------------------------------------------------------------------------- /Content/Blueprints/TrackGenerator/Textures/RoadTexture_Normal_Alpha.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UnrealMapboxBridgePlugin/HEAD/Content/Blueprints/TrackGenerator/Textures/RoadTexture_Normal_Alpha.uasset -------------------------------------------------------------------------------- /Content/Blueprints/TrackGenerator/Textures/T_Concrete_Panels_D.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UnrealMapboxBridgePlugin/HEAD/Content/Blueprints/TrackGenerator/Textures/T_Concrete_Panels_D.uasset -------------------------------------------------------------------------------- /Content/Blueprints/TrackGenerator/Textures/T_Concrete_Panels_N.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UnrealMapboxBridgePlugin/HEAD/Content/Blueprints/TrackGenerator/Textures/T_Concrete_Panels_N.uasset -------------------------------------------------------------------------------- /Content/Blueprints/TrackGenerator/Textures/T_MacroVariation.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UnrealMapboxBridgePlugin/HEAD/Content/Blueprints/TrackGenerator/Textures/T_MacroVariation.uasset -------------------------------------------------------------------------------- /Content/Blueprints/TrackGenerator/Textures/T_Metal_Aluminum_D.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UnrealMapboxBridgePlugin/HEAD/Content/Blueprints/TrackGenerator/Textures/T_Metal_Aluminum_D.uasset -------------------------------------------------------------------------------- /Content/Blueprints/TrackGenerator/Textures/T_Metal_Gold_N.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UnrealMapboxBridgePlugin/HEAD/Content/Blueprints/TrackGenerator/Textures/T_Metal_Gold_N.uasset -------------------------------------------------------------------------------- /Content/Blueprints/TrackGenerator/Textures/T_Perlin_Noise_M.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UnrealMapboxBridgePlugin/HEAD/Content/Blueprints/TrackGenerator/Textures/T_Perlin_Noise_M.uasset -------------------------------------------------------------------------------- /Docs/BBSizeInKM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UnrealMapboxBridgePlugin/HEAD/Docs/BBSizeInKM.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UnrealMapboxBridgePlugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UnrealMapboxBridgePlugin/HEAD/README.md -------------------------------------------------------------------------------- /Resources/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UnrealMapboxBridgePlugin/HEAD/Resources/main.py -------------------------------------------------------------------------------- /Resources/set_editor_property.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UnrealMapboxBridgePlugin/HEAD/Resources/set_editor_property.py -------------------------------------------------------------------------------- /Resources/terrainmagic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UnrealMapboxBridgePlugin/HEAD/Resources/terrainmagic.py -------------------------------------------------------------------------------- /Source/UnrealMapboxBridge/Private/EditorLandscapeLibrary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UnrealMapboxBridgePlugin/HEAD/Source/UnrealMapboxBridge/Private/EditorLandscapeLibrary.cpp -------------------------------------------------------------------------------- /Source/UnrealMapboxBridge/Private/GeoJsonStruct.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UnrealMapboxBridgePlugin/HEAD/Source/UnrealMapboxBridge/Private/GeoJsonStruct.cpp -------------------------------------------------------------------------------- /Source/UnrealMapboxBridge/Private/GeoJsonStructGeneratorComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UnrealMapboxBridgePlugin/HEAD/Source/UnrealMapboxBridge/Private/GeoJsonStructGeneratorComponent.cpp -------------------------------------------------------------------------------- /Source/UnrealMapboxBridge/Private/UnrealMapboxBridge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UnrealMapboxBridgePlugin/HEAD/Source/UnrealMapboxBridge/Private/UnrealMapboxBridge.cpp -------------------------------------------------------------------------------- /Source/UnrealMapboxBridge/Public/EditorLandscapeLibrary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UnrealMapboxBridgePlugin/HEAD/Source/UnrealMapboxBridge/Public/EditorLandscapeLibrary.h -------------------------------------------------------------------------------- /Source/UnrealMapboxBridge/Public/GeoJsonStruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UnrealMapboxBridgePlugin/HEAD/Source/UnrealMapboxBridge/Public/GeoJsonStruct.h -------------------------------------------------------------------------------- /Source/UnrealMapboxBridge/Public/GeoJsonStructGeneratorComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UnrealMapboxBridgePlugin/HEAD/Source/UnrealMapboxBridge/Public/GeoJsonStructGeneratorComponent.h -------------------------------------------------------------------------------- /Source/UnrealMapboxBridge/Public/UnrealMapboxBridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UnrealMapboxBridgePlugin/HEAD/Source/UnrealMapboxBridge/Public/UnrealMapboxBridge.h -------------------------------------------------------------------------------- /Source/UnrealMapboxBridge/UnrealMapboxBridge.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UnrealMapboxBridgePlugin/HEAD/Source/UnrealMapboxBridge/UnrealMapboxBridge.Build.cs -------------------------------------------------------------------------------- /Source/nlohmann/adl_serializer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UnrealMapboxBridgePlugin/HEAD/Source/nlohmann/adl_serializer.hpp -------------------------------------------------------------------------------- /Source/nlohmann/byte_container_with_subtype.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UnrealMapboxBridgePlugin/HEAD/Source/nlohmann/byte_container_with_subtype.hpp -------------------------------------------------------------------------------- /Source/nlohmann/detail/conversions/from_json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UnrealMapboxBridgePlugin/HEAD/Source/nlohmann/detail/conversions/from_json.hpp -------------------------------------------------------------------------------- /Source/nlohmann/detail/conversions/to_chars.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UnrealMapboxBridgePlugin/HEAD/Source/nlohmann/detail/conversions/to_chars.hpp -------------------------------------------------------------------------------- /Source/nlohmann/detail/conversions/to_json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UnrealMapboxBridgePlugin/HEAD/Source/nlohmann/detail/conversions/to_json.hpp -------------------------------------------------------------------------------- /Source/nlohmann/detail/exceptions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UnrealMapboxBridgePlugin/HEAD/Source/nlohmann/detail/exceptions.hpp -------------------------------------------------------------------------------- /Source/nlohmann/detail/hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UnrealMapboxBridgePlugin/HEAD/Source/nlohmann/detail/hash.hpp -------------------------------------------------------------------------------- /Source/nlohmann/detail/input/binary_reader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UnrealMapboxBridgePlugin/HEAD/Source/nlohmann/detail/input/binary_reader.hpp -------------------------------------------------------------------------------- /Source/nlohmann/detail/input/input_adapters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UnrealMapboxBridgePlugin/HEAD/Source/nlohmann/detail/input/input_adapters.hpp -------------------------------------------------------------------------------- /Source/nlohmann/detail/input/json_sax.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UnrealMapboxBridgePlugin/HEAD/Source/nlohmann/detail/input/json_sax.hpp -------------------------------------------------------------------------------- /Source/nlohmann/detail/input/lexer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UnrealMapboxBridgePlugin/HEAD/Source/nlohmann/detail/input/lexer.hpp -------------------------------------------------------------------------------- /Source/nlohmann/detail/input/parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UnrealMapboxBridgePlugin/HEAD/Source/nlohmann/detail/input/parser.hpp -------------------------------------------------------------------------------- /Source/nlohmann/detail/input/position_t.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UnrealMapboxBridgePlugin/HEAD/Source/nlohmann/detail/input/position_t.hpp -------------------------------------------------------------------------------- /Source/nlohmann/detail/iterators/internal_iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UnrealMapboxBridgePlugin/HEAD/Source/nlohmann/detail/iterators/internal_iterator.hpp -------------------------------------------------------------------------------- /Source/nlohmann/detail/iterators/iter_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UnrealMapboxBridgePlugin/HEAD/Source/nlohmann/detail/iterators/iter_impl.hpp -------------------------------------------------------------------------------- /Source/nlohmann/detail/iterators/iteration_proxy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UnrealMapboxBridgePlugin/HEAD/Source/nlohmann/detail/iterators/iteration_proxy.hpp -------------------------------------------------------------------------------- /Source/nlohmann/detail/iterators/iterator_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UnrealMapboxBridgePlugin/HEAD/Source/nlohmann/detail/iterators/iterator_traits.hpp -------------------------------------------------------------------------------- /Source/nlohmann/detail/iterators/json_reverse_iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UnrealMapboxBridgePlugin/HEAD/Source/nlohmann/detail/iterators/json_reverse_iterator.hpp -------------------------------------------------------------------------------- /Source/nlohmann/detail/iterators/primitive_iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UnrealMapboxBridgePlugin/HEAD/Source/nlohmann/detail/iterators/primitive_iterator.hpp -------------------------------------------------------------------------------- /Source/nlohmann/detail/json_pointer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UnrealMapboxBridgePlugin/HEAD/Source/nlohmann/detail/json_pointer.hpp -------------------------------------------------------------------------------- /Source/nlohmann/detail/json_ref.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UnrealMapboxBridgePlugin/HEAD/Source/nlohmann/detail/json_ref.hpp -------------------------------------------------------------------------------- /Source/nlohmann/detail/macro_scope.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UnrealMapboxBridgePlugin/HEAD/Source/nlohmann/detail/macro_scope.hpp -------------------------------------------------------------------------------- /Source/nlohmann/detail/macro_unscope.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UnrealMapboxBridgePlugin/HEAD/Source/nlohmann/detail/macro_unscope.hpp -------------------------------------------------------------------------------- /Source/nlohmann/detail/meta/call_std/begin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UnrealMapboxBridgePlugin/HEAD/Source/nlohmann/detail/meta/call_std/begin.hpp -------------------------------------------------------------------------------- /Source/nlohmann/detail/meta/call_std/end.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UnrealMapboxBridgePlugin/HEAD/Source/nlohmann/detail/meta/call_std/end.hpp -------------------------------------------------------------------------------- /Source/nlohmann/detail/meta/cpp_future.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UnrealMapboxBridgePlugin/HEAD/Source/nlohmann/detail/meta/cpp_future.hpp -------------------------------------------------------------------------------- /Source/nlohmann/detail/meta/detected.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UnrealMapboxBridgePlugin/HEAD/Source/nlohmann/detail/meta/detected.hpp -------------------------------------------------------------------------------- /Source/nlohmann/detail/meta/identity_tag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UnrealMapboxBridgePlugin/HEAD/Source/nlohmann/detail/meta/identity_tag.hpp -------------------------------------------------------------------------------- /Source/nlohmann/detail/meta/is_sax.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UnrealMapboxBridgePlugin/HEAD/Source/nlohmann/detail/meta/is_sax.hpp -------------------------------------------------------------------------------- /Source/nlohmann/detail/meta/type_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UnrealMapboxBridgePlugin/HEAD/Source/nlohmann/detail/meta/type_traits.hpp -------------------------------------------------------------------------------- /Source/nlohmann/detail/meta/void_t.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UnrealMapboxBridgePlugin/HEAD/Source/nlohmann/detail/meta/void_t.hpp -------------------------------------------------------------------------------- /Source/nlohmann/detail/output/binary_writer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UnrealMapboxBridgePlugin/HEAD/Source/nlohmann/detail/output/binary_writer.hpp -------------------------------------------------------------------------------- /Source/nlohmann/detail/output/output_adapters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UnrealMapboxBridgePlugin/HEAD/Source/nlohmann/detail/output/output_adapters.hpp -------------------------------------------------------------------------------- /Source/nlohmann/detail/output/serializer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UnrealMapboxBridgePlugin/HEAD/Source/nlohmann/detail/output/serializer.hpp -------------------------------------------------------------------------------- /Source/nlohmann/detail/string_escape.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UnrealMapboxBridgePlugin/HEAD/Source/nlohmann/detail/string_escape.hpp -------------------------------------------------------------------------------- /Source/nlohmann/detail/value_t.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UnrealMapboxBridgePlugin/HEAD/Source/nlohmann/detail/value_t.hpp -------------------------------------------------------------------------------- /Source/nlohmann/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UnrealMapboxBridgePlugin/HEAD/Source/nlohmann/json.hpp -------------------------------------------------------------------------------- /Source/nlohmann/json_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UnrealMapboxBridgePlugin/HEAD/Source/nlohmann/json_fwd.hpp -------------------------------------------------------------------------------- /Source/nlohmann/ordered_map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UnrealMapboxBridgePlugin/HEAD/Source/nlohmann/ordered_map.hpp -------------------------------------------------------------------------------- /Source/nlohmann/thirdparty/hedley/hedley.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UnrealMapboxBridgePlugin/HEAD/Source/nlohmann/thirdparty/hedley/hedley.hpp -------------------------------------------------------------------------------- /Source/nlohmann/thirdparty/hedley/hedley_undef.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UnrealMapboxBridgePlugin/HEAD/Source/nlohmann/thirdparty/hedley/hedley_undef.hpp -------------------------------------------------------------------------------- /UnrealMapboxBridge.uplugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UnrealMapboxBridgePlugin/HEAD/UnrealMapboxBridge.uplugin --------------------------------------------------------------------------------