You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: CHANGES.md
+18-1
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,21 @@
1
1
# Change Log
2
2
3
+
### v1.24.0 - 2023-04-03
4
+
5
+
This will be the _last_ release that supports Unreal Engine v4.27. Future versions will require Unreal Engine v5.0+.
6
+
7
+
##### Additions :tada:
8
+
9
+
- The `FlyToAltitudeProfileCurve`, `FlyToProgressCurve`, `FlyToMaximumAltitudeCurve`, `FlyToDuration`, and `FlyToGranularityDegrees` properties of `GlobeAwareDefaultPawn` / `DynamicPawn` may now be read and written from Blueprints.
10
+
- Added an option on `Cesium3DTileset` to ignore the `KHR_materials_unlit` extension entirely and use normal lighting and shadows.
11
+
- Added `CreateNavCollision` property to `Cesium3DTileset`. When enabled, `CreateNavCollision` is called on the static meshes created for tiles.
12
+
13
+
##### Fixes :wrench:
14
+
15
+
- Fixed unexpected reflection on tilesets with `KHR_materials_unlit` extension when the sun is close to the horizon.
16
+
17
+
In addition to the above, this release updates [cesium-native](https://github.com/CesiumGS/cesium-native) from v0.22.0 to v0.23.0. See the [changelog](https://github.com/CesiumGS/cesium-native/blob/main/CHANGES.md) for a complete list of changes in cesium-native.
18
+
3
19
### v1.23.0 - 2023-03-01
4
20
5
21
##### Additions :tada:
@@ -10,8 +26,9 @@
10
26
11
27
- Fixed bug that caused a crash when changing the project default token with tilesets active in the level.
12
28
- Vertex buffers created for 3D Tiles are now set to use full-precision UV coordinates, avoiding problems in particular with feature IDs.
29
+
- Added some missing headers, to avoid compiler errors in non-unity builds.
13
30
14
-
In addition to the above, this release updates [cesium-native](https://github.com/CesiumGS/cesium-native) from v0.21.3 to v0.22.0. See the [changelog](https://github.com/CesiumGS/cesium-native/blob/main/CHANGES.md) for a complete list of changes in cesium-native.
31
+
In addition to the above, this release updates [cesium-native](https://github.com/CesiumGS/cesium-native) from v0.21.3 to v0.22.1. See the [changelog](https://github.com/CesiumGS/cesium-native/blob/main/CHANGES.md) for a complete list of changes in cesium-native.
Copy file name to clipboardexpand all lines: Documentation/developer-setup-linux.md
+1
Original file line number
Diff line number
Diff line change
@@ -3,6 +3,7 @@ Detailed instructions for setting up a Cesium for Unreal development environment
3
3
# Prerequisities
4
4
5
5
- Install CMake (version 3.15 or newer) from https://cmake.org/install/
6
+
- For best JPEG-decoding performance, you must have [nasm](https://www.nasm.us/) installed so that CMake can find it. Everything will work fine without it, just slower.
6
7
- Build Unreal Engine for Linux by following the [Linux Quickstart](https://docs.unrealengine.com/en-US/SharingAndReleasing/Linux/BeginnerLinuxDeveloper/SettingUpAnUnrealWorkflow/index.html)
7
8
8
9
After compiling Unreal Engine, set the following environment variables in your `.bashrc`.
Copy file name to clipboardexpand all lines: Documentation/developer-setup-osx.md
+1
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,7 @@ Detailed instructions for setting up a Cesium for Unreal development environment
4
4
5
5
- Install CMake (version 3.15 or newer) from https://cmake.org/install/
6
6
- Install Xcode 11.3 from https://developer.apple.com/xcode/resources/
7
+
- For best JPEG-decoding performance, you must have [nasm](https://www.nasm.us/) installed so that CMake can find it. Everything will work fine without it, just slower.
7
8
- Install the Unreal Engine (version 4.26 or newer) from https://www.unrealengine.com/en-US/download
Copy file name to clipboardexpand all lines: Documentation/developer-setup-windows.md
+1
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,7 @@ Detailed instructions for setting up a Cesium for Unreal development environment
4
4
5
5
- Install CMake (version 3.15 or newer) from https://cmake.org/install/
6
6
- Install Visual Studio 2017 v15.6+ or Visual Studio 2019 v16.5+.
7
+
- For best JPEG-decoding performance, you must have [nasm](https://www.nasm.us/) installed so that CMake can find it. Everything will work fine without it, just slower.
7
8
- Install the Unreal Engine (version 4.26 or newer) from https://www.unrealengine.com/en-US/download
0 commit comments