Skip to content

Commit edc5222

Browse files
author
hpinkos
committed
Fixes #7364
1 parent 34f3c05 commit edc5222

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGES.md

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ Change Log
1919
##### Fixes :wrench:
2020
* Fixed issue causing polyline to look wavy depending on the position of the camera [#7209](https://github.com/AnalyticalGraphicsInc/cesium/pull/7209)
2121
* Fixed an issue where polylines intersecting the near plane would cause blinking. [#6955](https://github.com/AnalyticalGraphicsInc/cesium/pull/6955)
22+
* Fixed translucency issues for dynamic geometry entities. [#7364](https://github.com/AnalyticalGraphicsInc/cesium/issues/7364)
2223

2324
### 1.51 - 2018-11-01
2425

Source/DataSources/DynamicGeometryUpdater.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ define([
107107
if (isColorAppearance) {
108108
appearance = new PerInstanceColorAppearance({
109109
closed: closed,
110-
flat : !(onTerrain && geometryUpdater._supportsMaterialsforEntitiesOnTerrain)
110+
flat : onTerrain && !geometryUpdater._supportsMaterialsforEntitiesOnTerrain
111111
});
112112
} else {
113113
var material = MaterialProperty.getValue(time, fillMaterialProperty, this._material);

0 commit comments

Comments
 (0)