15832144755
2022-01-06 7b4c8991dca9cf2a809a95e239d144697d3afb56
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/**
 * Flags to enable experimental features in CesiumJS. Stability and performance
 * may not be optimal when these are enabled. Experimental features are subject
 * to change without Cesium's standard deprecation policy.
 * <p>
 * Experimental features must still uphold Cesium's quality standards. Here
 * are some guidelines:
 * </p>
 * <ul>
 *   <li>Experimental features must have high unit test coverage like any other feature.</li>
 *   <li>Experimental features are intended for large features where there is benefit of merging some of the code sooner (e.g. to avoid long-running staging branches)</li>
 *   <li>Experimental flags should be short-lived. Make it clear in the PR what it would take to promote the feature to a regular feature.</li>
 *   <li>To avoid cluttering the code, check the flag in as few places as possible. Ideally this would be a single place.</li>
 * </ul>
 *
 * @experimental This feature is using part of the 3D Tiles spec that is not final and is subject to change without Cesium's standard deprecation policy.
 */
var ExperimentalFeatures = {
  /**
   * Toggles the usage of the ModelExperimental class.
   *
   * @type {Boolean}
   */
  enableModelExperimental: false,
};
 
export default ExperimentalFeatures;