Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
8261 - Fix style issues, update CHANGES.md
Browse files Browse the repository at this point in the history
Samuel Vargas committed Jan 13, 2020
1 parent b6e95b2 commit b3bf13f
Showing 2 changed files with 6 additions and 6 deletions.
1 change: 1 addition & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -20,6 +20,7 @@ Change Log

##### Fixes :wrench:
* Fixed a bug where the camera could go underground during mouse navigation. [#8504](https://github.com/AnalyticalGraphicsInc/cesium/pull/8504)
* Reduced Cesium bundle size by avoiding unnecessarily importing `Cesium3DTileset` in `Picking.js` [#8532](https://github.com/AnalyticalGraphicsInc/cesium/pull/8532)

### 1.65.0 - 2020-01-06

11 changes: 5 additions & 6 deletions Source/Scene/Cesium3DTileset.js
Original file line number Diff line number Diff line change
@@ -879,18 +879,17 @@ import TileOrientedBoundingBox from './TileOrientedBoundingBox.js';
}

defineProperties(Cesium3DTileset.prototype, {

/**
* NOTE: This getter exists so that `Picking.js` can differentiate between
* PrimitiveCollections and Cesium3DTileset objects without inflating
* the size of the module via `instance of Cesium3DTileset`
* PrimitiveCollection and Cesium3DTileset objects without inflating
* the size of the module via `instanceof Cesium3DTileset`
*/

isCesium3DTileset: {
get: function() {
isCesium3DTileset : {
get : function() {
return true;
}
}
},

/**
* Gets the tileset's asset object property, which contains metadata about the tileset.

0 comments on commit b3bf13f

Please sign in to comment.