Skip to content

Commit

Permalink
update with current cesium (#1)
Browse files Browse the repository at this point in the history
* Added tests for DiscardEmptyTileImagePolicy, updated CHANGES.md

* Made comment on image blob loading error handling clearer.

* fixed linter error - 'missing use strict'

* Fix typo.

* Remove fit.

* Update CHANGES.

* update CHANGES

* eslint configuration updates and fixes

* Update Node ecmaVersion to '2019'.
* Enable [no-tabs](https://eslint.org/docs/rules/no-tabs).
* Enabled [no-restricted-globals](https://eslint.org/docs/rules/no-restricted-globals) for jasmine `fit` and `fdescribe`.
* Remove existing tabs from code-base.
* Update eslint-config-cesium CHANGES and version

Closes CesiumGS#7785

* Fix PostProcessStageTextureCache.clear, which previously didn't clear anything.

* Multisampling in sdf shader to try to get rid of artifacts

* Use DiscardEmptyTileImagePolicy for all Bing styles.

This removes the need to inspect pixel values to detect the placeholder "missing tile" image.

Also change `DiscardEmptyTileImagePolicy.EMPTY_IMAGE` to be a real (blank) image.
This way we always satisfy the documented API of `requestImage`.

Fixes CesiumGS#1353.

* Add syntax to to delete data from properties via CZML.

Specifying delete: true for any property will delete data for that property, depending on the type of property, for the specified interval (or if no interval is specified, then for all time).

This deletes samples for sampled properties, or removes intervals for interval properties.

* Much improved multisampling of the SDF text

* Fixes CesiumGS#7827

* Fix double render.

* First crack at importing AGI_articulations from glTF models.

* Some tweaking, and add option to get list of articulations.

* Add 3D Models Articulations demo.

* Fixed writeTextToCanvas to properly position the text with padding above
and below the glyph.  Previously it was doubling the padding so it was
always rendering the glyph at the very top of the canvas

* Added bitmap-sdf library

* Don't send ion access token to non-ion servers

Some ion-hosted assets can still point to additional external servers as,
part of their dataset. We were still appending the ion access_token in
the Accept header to these servers, which is at best pointless but at worst
would cause some CORS requests to fail because the Accept header was not
allowed.

* Update CHANGES

* Added SDFSettings class to hold info about how SDF fonts are generated.
Replaced tinySDF based code with a modified version of the original
cesium text rendering to preserve positioning logic.
Applying offsets in LabelCollection and Label bounding box compuation to
account for padding in the glyphs to position things correctly.
Enabled more unit tests in LabelCollectionSpec

* Fix include

* Simplified sdf shaders to push edge computation to the CPU.
Deleted tiny-sdf

* saving vertical origin in texture cache id

* Updated unit tests

* Documented totalScale in Label and using it in few places in LabelCollection

* Updated Labels SDF gallery image

* Add tests that delete data from custom properties since the code path is a bit different.

* Hook up existing CheckerboardMaterialProperty to CZML.

CheckerboardMaterialProperty was added to the entity API in CesiumGS#2385 but
was forgotten for CZML.

* Reduce Bing Maps transactions and ion Bing sessions

This is a simple PR to try and minimize the number of Bing transactions
and ion Bing sessions over the course of a page. While we can't cache
Bing metadata or ion endpoints across sessions, this type of basic caching
is allowed and should dramatically reduce use for certain use cases.

1. BingMapsImageryProvider now keeps a local cache of metadata for a given
url/style. This means destroying and recreating instances multiple times
still only uses a single transaction.

2. IonImageryProvider now caches endpoint requests. This means that
creating multiple IonImageryProviders for the same Bing asset will only
use a single Bing session.

While use cases like Sandcastle, which uses an iframe, won't benefit at
all from this change, applications that switch base layers often or
destroy/recreate the viewer as part of a SPA will see dramatic improvement.

* Initial commit of KML exporter

* Update changes.

* Removed unnecessary comments in Label.js

* Fixed background padding size computation in LabelCollection so that the
specified size in pixels is scaled properly when finally rendered

* Update the API to be based on an articulation/stage key.

* Got bilboards with styling pretty much there. Need to test (especially the hotspots)

* Remove TODO, change model center point.

* Check childTileMask if provider doesn't know tile availability.

* Update CHANGES.md.

* Tweak Sandcastle

* Fixed memory leak

* Tweaks after review.

* Fixed error in old versions of ANGLE

* Got points/billboards done.

* First cut off LineStrings with materials

* Don't rewrite Bing tile URLS.

Instead, tell Bing what protocol we want.

* MapboxStyleImageryProvider

- Rename from MapboxStyleProvider
- Modify CHANGES.md
- Add reference to ImageryProvider class

* Added support for Rectangle and Polygon graphics.

* chore(package): update merge-stream to version 2.0.0

* Add test for articulations

* Remove getter for articulationStageKeys, it's not useful by itself.

* Started adding time support

* Fixed memory leak when removing an DataSource

* Added test

* Update CHANGES.md

* Got style caching working

* Formatting

* chore(package): update gulp-zip to version 5.0.0

* Fix credits

* Ordering

* Update url parameter type

* Marked SDFSettings as private

* Added comment to bitmap-sdf explaining what it is and what it does

* Remove commented code

* Fix for request render mode

* Beginnings of test helper functions

* CHANGES.md

* Added a fallback for when GL_OES_standard_derivatives isn't available that just does a single sample with a fixed smoothing.

* Code cleanup from review.

* More testing

* fix mitering bug with ground polylines over long distances

* Add clarying doc about node transformation additive vs. replacement

* Fix

* Started work on CZML articulations demo.

* Add Sandcastle example for new Montreal Point Cloud ion asset

* Add thumbnail and improve description

* Update for 1.58

* Fix ImageBitmap spec on Edge

* 1.58.1 npm release

* use tile.data.tileBoundingRegion.minimumHeight instead of tile.data.minimumHeight

* update CHANGES.md

* Add name to contributors

* Add tests for Entity-level articulations

* CHANGES.md

* Verified all point/billboard exporting works as expected

* Fixed Tracks/Multitracks

* Add render state to copy color command. This makes viewer/scissor work for billboards in zoomed out 2D View

* Update CHANGES.md

* Make sure 204 image requests reject when using ImageBitmap

* Make ImageBitmap test only run when ImageBitmap is supported

* Update changes [ci skip]

* update changes.md

* Added tests for dynamic points. Added code for path graphics and labels. Fixed polygons. Fixed handling of default intervals

* Added a bunch of tests

* Polygon and Polyline tests work.

* Models

* Fixed typo in LineString

* Tweak CSS styling of standalone Sandcastle loader

* Gamma correct fix for polylines

* CHANGES.md

* Ground Overlay support

* Add articulation tests to CzmlDataSourceSpec.js

* Reorder code in entity layer to have consistent order of properties.

Previously the list of properties for each type of Graphics in the entity layer was different everywhere.  This made it quite difficult to compare the set of properties in the code vs the set of properties in CZML. I went through and reordered all these locations to have properties in the same order in each.

* The documentation for the constructor for each graphics type
* The content of the constructor (initializing `_property` and `_propertySubscription` to `undefined`)
* The public get/set properties
* The contents of the `clone` function for each graphics type
* The contents of the `merge` function for each graphics type
* The code assigning the values of properties in `CzmlDataSource`.

Also add some missing functionality to `CzmlDataSource`:

`box.heightReference`
`cylinder.heightReference`
`ellipsoid.heightReference`

`corridor.classificationType`
`ellipse.classificationType`
`polygon.classificationType`
`polyline.classificationType`
`rectangle.classificationType`

* Update validation document.

* Update validation document.

* Updated Corporate CLA

* Update deprecated Travis command

* support for ArcGISTiledElevationTerrainProvider

* Added ArcGISTiledElevationTerrainProvider under Additions/1.59.

* More useful error message for ImageBitmap

* Add Cesium GS to CONTRIBUTORS.md

* Solve struct ellipsoid caused the model to dark

Solved the problem that struct ellipsoid caused the model to darken on Qualcomm platform

* fix: 3dtile dark

fix: 3dtile dark

* Revert "Solve struct ellipsoid caused the model to dark"

This reverts commit d6f91aa.

* Added tests for missing coverage areas, we now return external files as a collection of blobs and we now handle inertial positions.

* eslint

* Removed debugging info from Labels SDF sandcastle demo

* Changed SDF vertex attributed to be a vec2 instead of a vec4 since the z and w components were 0

* Storing canvas width and height in local variables in LabelCollection
Storing imageIndex as a local variable to avoid redundant compuations

* Remove blank line in BillboardCollectionFS.glsl

* Added bitmap-sdf to third party section of LICENSE.md

* Renamed SDF to SDF_INDEX to match other index location naming
convention.

* Added table closing tag in Labels SDF example

* Updated doc

* Changed class to a function, updated doc and fixed tests

* Fixed example

* Update CHANGES and CONTRIBUTORS

* Oops

* Fixed issue if data uris are used for images

* Added KMZ export and a test for it.

* Updated Doc

* remove czm_ellipsoid struct

remove function czm_getWgs84EllipsoidEC
remove struct czm_ellipsoid

add Constant czm_ellipsoid_radii
add Constant czm_ellipsoid_inverseRadii

* Delete unused files

Delete unused files

* Update CONTRIBUTORS.md

* Revert "Merge pull request #1 from verybigzhouhai/3dtile-dark01"

This reverts commit f383685, reversing
changes made to b2588e4.

* Delete ellipsoidNew.glsl

* modify Constant Name

modify constant name

* Our zip library isn't thread safe. Files must be add sequentially

* Fixed factorial to actually work. It would only work if you called it in a loop in order, so I changed the test to not do that

* Update CHANGES.md

* Update CHANGES.md

* Export KML sandcastle example. Needed to add ability for modelCallback to add to externalFiles.

* Added test

* eslint

* add note and update CHANGES.md

add note and update CHANGES.md

* Update CLA instructions

* Missing info in CHANGES

* Reordered CHANGES

* Updated ion token and package.json version

* Updated Sandcastle filename with a case difference

* Replace old CLA txt with new CLA PDF

* Added link to Labels SDF sandcastle example to CHANGES.md
Added Label.totalScale property to CHANGES.md

* update export KML doc and Sandcastle

* Changed getFontInfo function to be parseFont and moved it to Label.
Rather than keeping a fontInfoCache in LabelCollection the font
properties are stored on the Label itself and the parseFont function is
called when the font string changes.

* link update

* fix

* Make PolygonGraphics.hierarchy always produce a PolygonHierarchy.

For backwards compatibility we preserve the existing behavior of allowing an array of positions to be set.
This makes the behavior more closely match the documentation. The ability to set an array of positions
was undocumented, though some Sandcastle examples do this.

This removes the need for conversion in PolygonGeometryUpdater at the point where the data is used.

* Make code more consistent between processArrayPacketData and processPositionsPacketData

* Clean up test code.

Use CzmlDataSource.load in most tests. Compare against the values from the packet data rather than copy/pasting the expected values.

* Add support for polygons with holes to CzmlDataSource.

* Add additional tests

* Add more tests. Fix incorrect behavior with reference arrays specified using intervals.

* Add more tests.

* Update validation document.

* Add more tests.

* In PolygonHierarchy, holes needs to be an array of PolygonHierarchy.

* Add holes to CZML polygon Sandcastle examples.

* fix typo

* update CHANGES

* fix typo

* update CHANGES

* Regenerate validation document and assertions.

* fix typo
  • Loading branch information
njrivera authored Jul 16, 2019
1 parent cd6e045 commit 5e4ef8c
Show file tree
Hide file tree
Showing 1,852 changed files with 153,806 additions and 51,846 deletions.
20 changes: 20 additions & 0 deletions .appveyor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
image: Visual Studio 2017

version: '{build}'

environment:
matrix:
- nodejs_version: "8"

install:
# Get the latest stable version of Node.js
- ps: Install-Product node $env:nodejs_version
# install modules
- npm install

test_script:
- npm --silent run build
- npm --silent run test -- --browsers IE --webgl-stub --suppressPassed

# Don't actually build.
build: off
5 changes: 5 additions & 0 deletions .concierge/config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"contributorsPath": "CONTRIBUTORS.md",
"unitTestPath" : "Specs/",
"maxDaysSinceUpdate": 30
}
48 changes: 34 additions & 14 deletions .concierge/templates/pullRequestOpened.hbs
Original file line number Diff line number Diff line change
@@ -1,24 +1,44 @@
{{#if claEnabled}}
{{#if askForCla}}
[![Please sign the CLA before we review this PR.](https://img.shields.io/badge/CLA-required-red.svg)](https://github.com/AnalyticalGraphicsInc/cesium/blob/master/CONTRIBUTING.md#contributor-license-agreement-cla)
{{#if askAboutContributors}}
Thank you so much for the pull request @{{ userName }}! I noticed this is your first pull request and I wanted to say welcome to the Cesium community!

Welcome to the Cesium community @{{ userName }}!
The [Pull Request Guidelines](https://github.com/AnalyticalGraphicsInc/cesium/blob/master/CONTRIBUTING.md#pull-request-guidelines) is a handy reference for making sure your PR gets accepted quickly, so make sure to skim that.

Can you please send in a [Contributor License Agreement](https://github.com/AnalyticalGraphicsInc/cesium/blob/master/CONTRIBUTING.md#contributor-license-agreement-cla) (CLA) so that we can review and merge this pull request?
* :x: Missing `CONTRIBUTORS.md` entry.
* Please add yourself to the [contributors]({{ contributorsUrl }}) file!
{{else}}
![Signed CLA is on file.](https://img.shields.io/badge/CLA-signed-brightgreen.svg)

@{{ userName }}, thanks for the pull request! Maintainers, we have a signed CLA from @{{ userName }}, so you can review this at any time.
Thanks for the pull request @{{ userName }}!
{{/if}}
{{#if claEnabled}}
{{#if errorCla}}
* :grey_exclamation: There was an error checking the CLA! If this is your first contribution, please send in a [Contributor License Agreement](https://github.com/AnalyticalGraphicsInc/cesium/blob/master/CONTRIBUTING.md#contributor-license-agreement-cla).
* Maintainers, this was the error I ran into while attempting to process the CLA check. Please resolve it to continue CLA checking.
```
{{ errorCla }}
```
{{else}}
@{{ userName }}, thanks for the pull request!
{{#if askForCla}}
* :x: Missing CLA.
* Please send in a [Contributor License Agreement](https://github.com/AnalyticalGraphicsInc/cesium/blob/master/CONTRIBUTING.md#contributor-license-agreement-cla) (CLA) and comment back here to let us know to check this!
{{else}}
* :heavy_check_mark: Signed CLA found.
{{/if}}
{{/if}}
{{/if}}

{{#if askAboutChanges}}
:warning: I noticed that [CHANGES.md]({{ repository_url }}/blob/master/CHANGES.md) has not been updated. If this change updates the public API in any way, fixes a bug, or makes any non-trivial update, please add a bullet point to `CHANGES.md` and comment on this pull request so we know it was updated. For more info, see the [Pull Request Guidelines]( https://github.com/AnalyticalGraphicsInc/cesium/blob/master/CONTRIBUTING.md#pull-request-guidelines).

* :grey_question: [CHANGES.md]({{ repository_url }}/blob/{{ headBranch }}/CHANGES.md) was not updated.
* If this change updates the public API in any way, please add a bullet point to `CHANGES.md`.
{{/if}}
{{#if askAboutThirdParty}}
:warning: I noticed that a file in one of our ThirdParty folders (`{{ thirdPartyFolders }}`) has been added or modified. Please verify that it has a section in [LICENSE.md]({{ repository_url }}/blob/master/LICENSE.md) and that its license information is up to date with this new version. Once you do, please confirm by commenting on this pull request.

* :grey_question: Changes to third party files were made.
* Looks like a file in one of our ThirdParty folders (`{{ thirdPartyFolders }}`) has been added or modified. Please verify that it has a section in [LICENSE.md]({{ repository_url }}/blob/master/LICENSE.md) and that its license information is up to date with this new version.
{{/if}}
{{#if askAboutTests}}
* :grey_question: Unit tests were not updated.
* Make sure you've [updated tests](https://github.com/AnalyticalGraphicsInc/cesium/tree/master/Documentation/Contributors/TestingGuide) to reflect your changes, added tests for any new code, and ran the code coverage tool.
{{/if}}

Reviewers, don't forget to make sure that:

- [ ] Cesium Viewer works.
- [ ] Works in 2D/CV.
- [ ] Works (or fails gracefully) in IE11.
4 changes: 0 additions & 4 deletions .concierge/templates/signature.hbs
Original file line number Diff line number Diff line change
@@ -1,5 +1 @@
---

__I am a bot who helps you make Cesium awesome! [Contributions to my configuration are welcome.](https://github.com/AnalyticalGraphicsInc/cesium/tree/master/.concierge)__
:earth_africa: :earth_americas: :earth_asia:
3 changes: 3 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,11 @@ Apps/HelloWorld.html
Apps/Sandcastle/ThirdParty/**
Build/**
Documentation/**
Instrumented/**
Source/Shaders/**
Source/ThirdParty/**
Source/Workers/cesiumWorkerBootstrapper.js
ThirdParty/**
Tools/**
Apps/Sandcastle/jsHintOptions.js
Apps/Sandcastle/gallery/gallery-index.js
13 changes: 0 additions & 13 deletions .github/ISSUE_TEMPLATE.md

This file was deleted.

28 changes: 28 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
---
name: Report a bug
about: Let us know so we can fix it!
---

<!--
Thanks for helping us improve Cesium! Please describe what the expected behavior is vs what actually happens.
Creating a Sandcastle example (https://cesiumjs.org/Cesium/Build/Apps/Sandcastle/) that reproduces the issue helps us a lot in tracking down bugs. Paste the link you get from the "Share" button in Sandcastle below.
-->

Sandcastle example:

Browser:

Operating System:

<!--
If you can also contribute a fix, we'd absolutely appreciate it! Fixing a bug in Cesium often means fixing a bug for thousands of applications and millions of end users.
Check out the contributor guide to get started:
https://github.com/AnalyticalGraphicsInc/cesium/blob/master/CONTRIBUTING.md
Just let us know you're working on it and we'd be happy to provide advice and feedback.
-->
14 changes: 14 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
---
name: Request a feature
about: New ideas & improvements to Cesium are always welcome.
---

<!--
Thanks for helping make Cesium better!
When suggesting an idea, give examples of the intended use case. Features that benefit the wider community are more likely to be prioritized.
The best way to get your ideas into Cesium is to help us! We love contributions and are always happy to be provide feedback and advice. Check out the contributor guide to get started:
https://github.com/AnalyticalGraphicsInc/cesium/blob/master/CONTRIBUTING.md
-->
6 changes: 6 additions & 0 deletions .github/ISSUE_TEMPLATE/question.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
name: Ask a question
about: Please use the forum (https://groups.google.com/forum/#!forum/cesium-dev) for general questions about using Cesium.
---

:exclamation: Please use the [forum](https://groups.google.com/forum/#!forum/cesium-dev) for asking questions about how to use Cesium and best practices. The core Cesium team actively monitors the forum and we love seeing what people are working on! :exclamation:
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ Thumbs.db

/Apps/Sandcastle/jsHintOptions.js
/Apps/Sandcastle/gallery/gallery-index.js
/Apps/Sandcastle/templates/bucket.css

/Source/Cesium.js

Expand Down
19 changes: 19 additions & 0 deletions .idea/codeStyles/Project.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions .idea/codeStyles/codeStyleConfig.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 0 additions & 7 deletions .idea/inspectionProfiles/profiles_settings.xml

This file was deleted.

2 changes: 1 addition & 1 deletion .idea/runConfigurations/Run_tests.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 15 additions & 0 deletions .slackbot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
releaseSchedule:
ggetz: 2/1/2019
hpinkos: 3/1/2019
lilleyse: 4/1/2019
tfili: 5/1/2019
dbagnell: 6/3/2019
tfili: 7/1/2019
tfili: 8/1/2019

greetings:
- Happy Friday everyone!
- Can you believe Friday is already here?
- I hope you all had awesome week!
- I skipped breakfast, so I hope Gary baked something good today...
- Good morning everyone!
63 changes: 30 additions & 33 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,39 +2,36 @@ language: node_js
node_js:
- "8"
sudo: false
addons:
chrome: stable
firefox: latest
services:
- xvfb
before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
script:
- echo 'deployPending' && echo -en 'travis_fold:start:script.deployPending\\r'
- npm run deploy-set-version -- --version $TRAVIS_BRANCH.$TRAVIS_BUILD_NUMBER
- npm run deploy-status -- --status pending --message 'Waiting for build'
- echo -en 'travis_fold:end:script.deployPending\\r'

- echo 'eslint' && echo -en 'travis_fold:start:script.eslint\\r'
- npm run eslint
- echo -en 'travis_fold:end:script.eslint\\r'

- echo 'test webgl-stub' && echo -en 'travis_fold:start:script.test\\r'
- npm run build
- npm run test -- --browsers Electron --webgl-stub --failTaskOnError --suppressPassed
- echo -en 'travis_fold:end:script.test\\r'

- echo 'makeZipFile' && echo -en 'travis_fold:start:script.makeZipFile\\r'
- npm run clean
- npm run makeZipFile -- --concurrency 2
- npm pack
- echo -en 'travis_fold:end:script.makeZipFile\\r'

- echo 'deploy' && echo -en 'travis_fold:start:script.deploy\\r'
- npm run deploy-s3 -- -b cesium-dev -d cesium/$TRAVIS_BRANCH --confirm -c 'no-cache'
- npm run deploy-status -- --status success --message Deployed
- echo -en 'travis_fold:end:script.deploy\\r'

- echo 'test webgl-stub release' && echo -en 'travis_fold:start:script test.release\\r'
- npm run test -- --browsers Electron --failTaskOnError --webgl-stub --release --suppressPassed
- echo -en 'travis_fold:end:script test.release\\r'

- echo 'cloc' && echo -en 'travis_fold:start:script.cloc\\r'
- npm run cloc
- echo -en 'travis_fold:end:script.cloc\\r'
- npm --silent run deploy-set-version -- --buildVersion $TRAVIS_BRANCH.$TRAVIS_BUILD_NUMBER
- npm --silent run deploy-status -- --status pending --message 'Waiting for build'

- npm --silent run eslint

- npm --silent run build
- npm --silent run test -- --browsers FirefoxHeadless --webgl-stub --failTaskOnError --suppressPassed

- npm --silent run clean
- travis_wait 20 npm --silent run makeZipFile -- --concurrency 1
- npm pack &> /dev/null

- npm --silent run buildApps

- npm --silent run deploy-s3 -- -b cesium-dev -d cesium/$TRAVIS_BRANCH --confirm -c 'no-cache'
- npm --silent run deploy-status -- --status success --message Deployed

- npm --silent run test -- --browsers FirefoxHeadless --failTaskOnError --webgl-stub --release --suppressPassed

# Various Node.js smoke-screen tests
- node -e "const Cesium = require('./');"
- NODE_ENV=development node index.js
- NODE_ENV=production node index.js

- npm --silent run cloc
7 changes: 7 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"recommendations": [
"dbaeumer.vscode-eslint",
"slevesque.shader",
"cesium.gltf-vscode"
]
}
22 changes: 10 additions & 12 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,21 +6,19 @@
"**/Thumbs.db": true,
".idea": true,
".metadata": true,
"Build": true,
"Instrumented": true,
"node_modules": true,
".settings": true,
".externalToolBuilders": true,
".project": true,
"launches": true,
"Cesium-*.zip": true,
"cesium-*.tgz": true,
"Apps/Sandcastle/jsHintOptions.js": true,
"Apps/Sandcastle/gallery/gallery-index.js": true,
"Source/Cesium.js": true,
"Source/Shaders/**/*.js": true,
"Specs/SpecList.js": true,
"npm-debug.log": true
"launches": true
},
"search.exclude": {
"Build": true,
"Instrumented": true,
"node_modules": true,
"Source/Shaders/**/*.js": true
},
"files.associations": {
"*.czml": "json"
},
"files.trimTrailingWhitespace": true,
"files.insertFinalNewline": true,
Expand Down
Loading

0 comments on commit 5e4ef8c

Please sign in to comment.