You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: Source/Scene/Scene.js
+2-7
Original file line number
Diff line number
Diff line change
@@ -218,10 +218,7 @@ define([
218
218
* @param {Number} [options.terrainExaggeration=1.0] A scalar used to exaggerate the terrain. Note that terrain exaggeration will not modify any other primitive as they are positioned relative to the ellipsoid.
219
219
* @param {Boolean} [options.shadows=false] Determines if shadows are cast by the sun.
220
220
* @param {MapMode2D} [options.mapMode2D=MapMode2D.INFINITE_SCROLL] Determines if the 2D map is rotatable or can be scrolled infinitely in the horizontal direction.
221
-
* @param {Boolean} [options.requestRenderMode=false] If true, rendering a frame will only occur when needed as
222
-
* determined by changes within the scene. Enabling improves performance of the application, but requires using
223
-
* {@link Scene#requestRender} to render a new frame explicitly in this mode. This will be necessary in many cases
224
-
* after making changes to the scene in other parts of the API.
221
+
* @param {Boolean} [options.requestRenderMode=false] If true, rendering a frame will only occur when needed as determined by changes within the scene. Enabling improves performance of the application, but requires using {@link Scene#requestRender} to render a new frame explicitly in this mode. This will be necessary in many cases after making changes to the scene in other parts of the API.
225
222
* @param {Number} [options.maximumRenderTimeChange=0.5] If requestRenderMode is true, this value defines the maximum change in simulation time allowed before a render is requested.
Copy file name to clipboardexpand all lines: Source/Widgets/CesiumWidget/CesiumWidget.js
+1-1
Original file line number
Diff line number
Diff line change
@@ -164,7 +164,7 @@ define([
164
164
* @param {Boolean} [options.shadows=false] Determines if shadows are cast by the sun.
165
165
* @param {ShadowMode} [options.terrainShadows=ShadowMode.RECEIVE_ONLY] Determines if the terrain casts or receives shadows from the sun.
166
166
* @param {MapMode2D} [options.mapMode2D=MapMode2D.INFINITE_SCROLL] Determines if the 2D map is rotatable or can be scrolled infinitely in the horizontal direction.
167
-
* @param {Boolean} [options.requestRenderMode=false] If true, rendering a frame will only occur when needed as determined by changes within the scene. Enabling improves performance of the application.
167
+
* @param {Boolean} [options.requestRenderMode=false] If true, rendering a frame will only occur when needed as determined by changes within the scene. Enabling improves performance of the application, but requires using {@link Scene#requestRender} to render a new frame explicitly in this mode. This will be necessary in many cases after making changes to the scene in other parts of the API.
168
168
* @param {Number} [options.maximumRenderTimeChange=0.5] If requestRenderMode is true, this value defines the maximum change in simulation time allowed before a render is requested.
169
169
*
170
170
* @exception {DeveloperError} Element with id "container" does not exist in the document.
Copy file name to clipboardexpand all lines: Source/Widgets/Viewer/Viewer.js
+1-1
Original file line number
Diff line number
Diff line change
@@ -288,7 +288,7 @@ define([
288
288
* @param {ShadowMode} [options.terrainShadows=ShadowMode.RECEIVE_ONLY] Determines if the terrain casts or receives shadows from the sun.
289
289
* @param {MapMode2D} [options.mapMode2D=MapMode2D.INFINITE_SCROLL] Determines if the 2D map is rotatable or can be scrolled infinitely in the horizontal direction.
290
290
* @param {Boolean} [options.projectionPicker=false] If set to true, the ProjectionPicker widget will be created.
291
-
* @param {Boolean} [options.requestRenderMode=false] If true, rendering a frame will only occur when needed as determined by changes within the scene. Enabling improves performance of the application.
291
+
* @param {Boolean} [options.requestRenderMode=false] If true, rendering a frame will only occur when needed as determined by changes within the scene. Enabling improves performance of the application, but requires using {@link Scene#requestRender} to render a new frame explicitly in this mode. This will be necessary in many cases after making changes to the scene in other parts of the API.
292
292
* @param {Number} [options.maximumRenderTimeChange=0.5] If requestRenderMode is true, this value defines the maximum change in simulation time allowed before a render is requested.
293
293
*
294
294
* @exception {DeveloperError} Element with id "container" does not exist in the document.
0 commit comments