Skip to content

Commit e50145f

Browse files
committed
More updates
1 parent 17419b5 commit e50145f

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

CHANGES.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,10 @@ Change Log
44
### 1.47 - 2018-07-02
55

66
##### Breaking Changes :mega:
7-
* glTF 2.0 models corrected to face +Z forwards per specification. Internally Cesium uses +X as forward, so a new +Z to +X rotation was added for 2.0 models only. To fix models that are oriented incorrectly after this change, apply a +X to +Z rotation in the glTF file. The can be done by setting the `matrix` of the root node to `[0,0,1,0,0,1,0,0,-1,0,0,0,0,0,0,1]`. [#6632](https://github.com/AnalyticalGraphicsInc/cesium/pull/6632)
7+
##### Breaking Changes :mega:
8+
* glTF 2.0 models corrected to face +Z forwards per specification. Internally Cesium uses +X as forward, so a new +Z to +X rotation was added for 2.0 models only. To fix models that are oriented incorrectly after this change:
9+
* If the model faces +X forwards update the glTF to face +Z forwards. This can be done by loading the glTF in a model editor and applying a -90 degree rotation about the Y-axis. Alternatively, add a new root node to the glTF node hierarchy whose `matrix` is `[0,0,1,0,0,1,0,0,-1,0,0,0,0,0,0,1]`.
10+
* Apply a -90 degree rotation to the model's heading. This can be done by setting the model's `orientation` using the Entity API or from within CZML. See https://github.com/AnalyticalGraphicsInc/cesium/pull/6738 for more details.
811
* Dropped support for directory URLs when loading tilesets to match the updated [3D Tiles spec](https://github.com/AnalyticalGraphicsInc/3d-tiles/issues/272). [#6502](https://github.com/AnalyticalGraphicsInc/cesium/issues/6502)
912
* KML and GeoJSON now use `PolylineGraphics` instead of `CorridorGraphics` for polylines on terrain. [#6706](https://github.com/AnalyticalGraphicsInc/cesium/pull/6706)
1013

0 commit comments

Comments
 (0)