File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed
Source/CesiumRuntime/Public Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 11# Change Log {#changes}
22
3+ ### ? - ?
4+
5+ ##### Fixes :wrench :
6+
7+ - Fixed error messages in the Unreal log about uninitialized fields in ` FCesiumGeocoderServiceAttribution ` and ` FCesiumGeocoderServiceFeature ` .
8+
39### v2.17.0 - 2025-07-01
410
511This 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 @@ -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