CesiumGS / cesium-unreal

Bringing the 3D geospatial ecosystem to Unreal Engine
https://cesium.com/platform/cesium-for-unreal/
Apache License 2.0
921 stars 295 forks source link

Fix warnings in UE 5.2. #1454

Closed kring closed 3 months ago

kring commented 3 months ago

UE deprecated ULevelStreaming::ECurrentState in UE 5.2 and removed it in 5.3. We had some ifdef's to use the new type in 5.3+, but because we were still using the (now deprecated) type in 5.2, we were getting tons of warnings. So this PR just removes the ifdef and uses the new type in all UE versions.

j9liu commented 3 months ago

Thanks @kring !