Skip to content

Commit 0ee9fb7

Browse files
authored
Merge branch 'main' into Mark-CesiumEllipsoidFunctions-as-CESIUMRUNTIME_API
2 parents 97bcd1b + 2838d5e commit 0ee9fb7

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

CHANGES.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@
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

1115
This is the last release of Cesium for Unreal that will support Unreal Engine v5.3. Future versions will require Unreal Engine v5.4+.

Source/CesiumRuntime/CesiumRuntime.Build.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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"

Source/CesiumRuntime/Public/CesiumGeocoderServiceBlueprintLibrary.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)