Skip to content

Commit

Permalink
Fixes #7364
Browse files Browse the repository at this point in the history
  • Loading branch information
hpinkos committed Dec 3, 2018
1 parent 34f3c05 commit edc5222
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ Change Log
##### Fixes :wrench:
* Fixed issue causing polyline to look wavy depending on the position of the camera [#7209](https://github.com/AnalyticalGraphicsInc/cesium/pull/7209)
* Fixed an issue where polylines intersecting the near plane would cause blinking. [#6955](https://github.com/AnalyticalGraphicsInc/cesium/pull/6955)
* Fixed translucency issues for dynamic geometry entities. [#7364](https://github.com/AnalyticalGraphicsInc/cesium/issues/7364)

### 1.51 - 2018-11-01

Expand Down
2 changes: 1 addition & 1 deletion Source/DataSources/DynamicGeometryUpdater.js
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ define([
if (isColorAppearance) {
appearance = new PerInstanceColorAppearance({
closed: closed,
flat : !(onTerrain && geometryUpdater._supportsMaterialsforEntitiesOnTerrain)
flat : onTerrain && !geometryUpdater._supportsMaterialsforEntitiesOnTerrain
});
} else {
var material = MaterialProperty.getValue(time, fillMaterialProperty, this._material);
Expand Down

0 comments on commit edc5222

Please sign in to comment.