Skip to content

Commit

Permalink
fix the wave bug #205
Browse files Browse the repository at this point in the history
  • Loading branch information
cavencj authored Nov 27, 2024
1 parent e712e09 commit 127b09c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ class CircleWaveMaterialProperty extends MaterialProperty {
}
result.color = Cesium.Property.getValueOrUndefined(this._color, time)
result.speed = Cesium.Property.getValueOrUndefined(this._speed, time)
result.count = Cesium.Property.getValueOrUndefined(this._count, time)
result.gradient = Cesium.Property.getValueOrUndefined(this._gradient, time)
result.count = this.count
result.gradient = this.gradient
return result
}

Expand Down

0 comments on commit 127b09c

Please sign in to comment.