From 95afb207ab7fc061b62ac9284602104203e015b8 Mon Sep 17 00:00:00 2001 From: Sean Lilley Date: Wed, 5 Jun 2019 17:44:05 -0400 Subject: [PATCH 1/2] Add render state to copy color command. This makes viewer/scissor work for billboards in zoomed out 2D View --- Source/Scene/GlobeDepth.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Source/Scene/GlobeDepth.js b/Source/Scene/GlobeDepth.js index 8ae0e8175bc2..663f127c6533 100644 --- a/Source/Scene/GlobeDepth.js +++ b/Source/Scene/GlobeDepth.js @@ -290,6 +290,8 @@ define([ }); } + globeDepth._copyColorCommand.renderState = globeDepth._rs; + if (!defined(globeDepth._tempCopyDepthCommand)) { globeDepth._tempCopyDepthCommand = context.createViewportQuadCommand(PassThroughDepth, { uniformMap : { From 3a32f3b9a1d00b64700293fecf815a5ce1dfc4da Mon Sep 17 00:00:00 2001 From: Sean Lilley Date: Wed, 5 Jun 2019 17:45:32 -0400 Subject: [PATCH 2/2] Update CHANGES.md --- CHANGES.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CHANGES.md b/CHANGES.md index 251e2d03e0b1..d5e23633402b 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,6 +1,11 @@ Change Log ========== +### 1.59 - 2019-07-01 + +##### Fixes :wrench: +* Fixed a bug where billboards were not pickable when zoomed out completely in 2D View. [#7908](https://github.com/AnalyticalGraphicsInc/cesium/pull/7908) + ### 1.58.1 - 2018-06-03 _This is an npm-only release to fix a publishing issue__