File tree Expand file tree Collapse file tree 3 files changed +9
-5
lines changed Expand file tree Collapse file tree 3 files changed +9
-5
lines changed Original file line number Diff line number Diff line change 66
77- Made ` CesiumEllipsoidFunctions ` accessible outside of the plugin.
88
9+ ##### Fixes :wrench :
10+
11+ - Fixed error messages in the Unreal log about uninitialized fields in ` FCesiumGeocoderServiceAttribution ` and ` FCesiumGeocoderServiceFeature ` .
12+
913### v2.17.0 - 2025-07-01
1014
1115This is the last release of Cesium for Unreal that will support Unreal Engine v5.3. Future versions will require Unreal Engine v5.4+.
Original file line number Diff line number Diff line change @@ -96,7 +96,9 @@ public CesiumRuntime(ReadOnlyTargetRules Target) : base(Target)
9696 "Renderer" ,
9797 "OpenSSL" ,
9898 "Json" ,
99- "JsonUtilities"
99+ "JsonUtilities" ,
100+ "Slate" ,
101+ "SlateCore"
100102 }
101103 ) ;
102104
@@ -135,8 +137,6 @@ public CesiumRuntime(ReadOnlyTargetRules Target) : base(Target)
135137 PublicDependencyModuleNames . AddRange (
136138 new string [ ] {
137139 "UnrealEd" ,
138- "Slate" ,
139- "SlateCore" ,
140140 "WorldBrowser" ,
141141 "ContentBrowser" ,
142142 "MaterialEditor"
Original file line number Diff line number Diff line change @@ -87,7 +87,7 @@ struct FCesiumGeocoderServiceAttribution {
8787 * Otherwise, it can appear in a popover.
8888 */
8989 UPROPERTY (BlueprintReadOnly, Category = " Cesium|Geocoder" )
90- bool bShowOnScreen;
90+ bool bShowOnScreen = false ;
9191};
9292
9393/* *
@@ -121,7 +121,7 @@ struct FCesiumGeocoderServiceFeature {
121121 BlueprintReadOnly,
122122 Category = " Cesium|Geocoder" ,
123123 meta = (AllowPrivateAccess))
124- FVector LongitudeLatitudeHeight;
124+ FVector LongitudeLatitudeHeight = FVector::Zero () ;
125125
126126 /* *
127127 * @brief The globe rectangle that bounds the feature. The box's `Min.X` is
You can’t perform that action at this time.
0 commit comments