|
4 | 4 |
|
5 | 5 | ##### Breaking Changes :mega:
|
6 | 6 |
|
| 7 | +- In Cesium 1.92, `when.js` will be removed and replaced with native promises. `Cesium.when` is deprecated and will be removed in 1.92. Any `Promise` returned from a function as of 1.92 will switch the native `Promise` API. Code bases using cesium will likely need updates after this change. See the [upgrade guide](https://community.cesium.com/t/cesiumjs-is-switching-from-when-js-to-native-promises-which-will-be-a-breaking-change-in-1-92/17213) for instructions on how to update your code base to be compliant with native promises. |
7 | 8 | - Fixed an inconsistently handled exception in `camera.getPickRay` that arises when the scene is not rendered. `camera.getPickRay` can now return undefined. [#10139](https://github.com/CesiumGS/cesium/pull/10139)
|
8 | 9 |
|
9 | 10 | ##### Additions :tada:
|
10 | 11 |
|
11 |
| -- Added MSAA support for WebGL2. Enabled on viewer creation with the multisampling rate as the `msaaSamples` option and can be controlled through `Scene.msaaSamples`. |
| 12 | +- Added MSAA support for WebGL2. Enabled in the `Viewer` constructor with the `msaaSamples` option and can be controlled through `Scene.msaaSamples`. |
12 | 13 | - glTF contents now use `ModelExperimental` by default. [#10055](https://github.com/CesiumGS/cesium/pull/10055)
|
13 | 14 | - Added the ability to toggle back-face culling in `ModelExperimental`. [#10070](https://github.com/CesiumGS/cesium/pull/10070)
|
14 |
| -- Added `depthPlaneEllipsoidOffset` to Viewer and Scene constructors to address rendering artefacts below ellipsoid zero elevation. [#9200](https://github.com/CesiumGS/cesium/pull/9200) |
| 15 | +- Added `depthPlaneEllipsoidOffset` to `Viewer` and `Scene` constructors to address rendering artifacts below the WGS84 ellipsoid. [#9200](https://github.com/CesiumGS/cesium/pull/9200) |
15 | 16 | - Added support for `debugColorTiles` in `ModelExperimental`. [#10071](https://github.com/CesiumGS/cesium/pull/10071)
|
16 | 17 | - Added support for shadows in `ModelExperimental`. [#10077](https://github.com/CesiumGS/cesium/pull/10077)
|
17 | 18 | - Added `packArray` and `unpackArray` for matrix types. [#10118](https://github.com/CesiumGS/cesium/pull/10118)
|
18 |
| -- glTF copyrights now appear under the credits display. [#10138](https://github.com/CesiumGS/cesium/pull/10138) |
19 |
| -- Credits are now sorted based on their number of occurrences. [#10141](https://github.com/CesiumGS/cesium/pull/10141) |
20 |
| -- Added option to show tileset credits on screen. [#10144](https://github.com/CesiumGS/cesium/pull/10144) |
21 | 19 | - Added more affine transformation helper functions to `Matrix2`, `Matrix3`, and `Matrix4`. [#10124](https://github.com/CesiumGS/cesium/pull/10124)
|
22 | 20 | - Added `setScale`, `setUniformScale`, `setRotation`, `getRotation`, and `multiplyByUniformScale` to `Matrix2`.
|
23 | 21 | - Added `setScale`, `setUniformScale`, `setRotation`, and `multiplyByUniformScale` to `Matrix3`.
|
|
26 | 24 | - Added `BoundingSphere.fromTransformation`. [#10130](https://github.com/CesiumGS/cesium/pull/10130)
|
27 | 25 | - Added `OrientedBoundingBox.fromTransformation`, `OrientedBoundingBox.computeCorners`, and `OrientedBoundingBox.computeTransformation`. [#10130](https://github.com/CesiumGS/cesium/pull/10130)
|
28 | 26 | - Added `Rectangle.subsection`. [#10130](https://github.com/CesiumGS/cesium/pull/10130)
|
| 27 | +- Added option to show tileset credits on screen. [#10144](https://github.com/CesiumGS/cesium/pull/10144) |
| 28 | +- glTF copyrights now appear under the credits display. [#10138](https://github.com/CesiumGS/cesium/pull/10138) |
| 29 | +- Credits are now sorted based on their number of occurrences. [#10141](https://github.com/CesiumGS/cesium/pull/10141) |
29 | 30 |
|
30 | 31 | ##### Fixes :wrench:
|
31 | 32 |
|
|
0 commit comments