Skip to content

Commit d5753b7

Browse files
authored
Merge pull request #7287 from AnalyticalGraphicsInc/configurable-pick-width
Configurable volume width for sampleHeight and clampToHeight
2 parents 71838d2 + 11fd5bc commit d5753b7

File tree

6 files changed

+233
-75
lines changed

6 files changed

+233
-75
lines changed

CHANGES.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
Change Log
22
==========
33

4+
### 1.54 - 2019-02-01
5+
6+
##### Deprecated :hourglass_flowing_sand:
7+
* `Scene.clampToHeight` now takes an optional `width` argument before the `result` argument. The previous function definition will no longer work in 1.56. [#7287](https://github.com/AnalyticalGraphicsInc/cesium/pull/7287)
8+
9+
##### Additions :tada:
10+
* Added the ability to specify the width of the intersection volume for `Scene.sampleHeight`, `Scene.clampToHeight`, `Scene.sampleHeightMostDetailed`, and `Scene.clampToHeightMostDetailed`. [#7287](https://github.com/AnalyticalGraphicsInc/cesium/pull/7287)
11+
412
### 1.53 - 2019-01-02
513

614
##### Additions :tada:

Source/Scene/Cesium3DTileset.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1973,7 +1973,7 @@ define([
19731973
var passes = frameState.passes;
19741974
var isRender = passes.render;
19751975
var isPick = passes.pick;
1976-
var isAsync = passes.async;
1976+
var isAsync = passes.asynchronous;
19771977

19781978
var statistics = tileset._statistics;
19791979
statistics.clear();

Source/Scene/FrameState.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -187,11 +187,11 @@ define([
187187
offscreen : false,
188188

189189
/**
190-
* <code>true</code> if the primitive should update for an async pass, <code>false</code> otherwise.
190+
* <code>true</code> if the primitive should update for an asynchronous pass, <code>false</code> otherwise.
191191
* @type {Boolean}
192192
* @default false
193193
*/
194-
async : false
194+
asynchronous : false
195195
};
196196

197197
/**

0 commit comments

Comments
 (0)