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: CHANGES.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ Change Log
7
7
*`TerrainProviders` that implement `availability` must now also implement the `loadTileDataAvailability` method.
8
8
9
9
##### Deprecated :hourglass_flowing_sand:
10
-
* The property `ModelAnimation.speedup` has been deprecated and renamed to `ModelAnimation.timeMultiplier`. `speedup` will be removed in version 1.54. [#7393](https://github.com/AnalyticalGraphicsInc/cesium/pull/7393)
10
+
* The property `ModelAnimation.speedup` has been deprecated and renamed to `ModelAnimation.multiplier`. `speedup` will be removed in version 1.54. [#7393](https://github.com/AnalyticalGraphicsInc/cesium/pull/7393)
11
11
12
12
##### Additions :tada:
13
13
* Added functions to get the most detailed height of 3D Tiles on-screen or off-screen. [#7115](https://github.com/AnalyticalGraphicsInc/cesium/pull/7115)
deprecationWarning('ModelAnimation.speedup','ModelAnimation.speedup is deprecated and will be removed in Cesium 1.54. Use ModelAnimation.timeMultiplier instead.');
55
-
options.timeMultiplier=options.speedup;
54
+
deprecationWarning('ModelAnimation.speedup','ModelAnimation.speedup is deprecated and will be removed in Cesium 1.54. Use ModelAnimation.multiplier instead.');
* to the scene clock speed; values less than <code>1.0</code> decrease the speed. A value of
204
204
* <code>1.0</code> plays the animation at the speed in the glTF animation mapped to the scene
205
205
* clock speed. For example, if the scene is played at 2x real-time, a two-second glTF animation
206
-
* will play in one second even if <code>timeMultiplier</code> is <code>1.0</code>.
206
+
* will play in one second even if <code>multiplier</code> is <code>1.0</code>.
207
207
*
208
208
* @memberof ModelAnimation.prototype
209
209
*
@@ -212,9 +212,9 @@ define([
212
212
*
213
213
* @default 1.0
214
214
*/
215
-
timeMultiplier : {
215
+
multiplier : {
216
216
get : function(){
217
-
returnthis._timeMultiplier;
217
+
returnthis._multiplier;
218
218
}
219
219
},
220
220
@@ -223,19 +223,19 @@ define([
223
223
* to the scene clock speed; values less than <code>1.0</code> decrease the speed. A value of
224
224
* <code>1.0</code> plays the animation at the speed in the glTF animation mapped to the scene
225
225
* clock speed. For example, if the scene is played at 2x real-time, a two-second glTF animation
226
-
* will play in one second even if <code>timeMultiplier</code> is <code>1.0</code>.
226
+
* will play in one second even if <code>multiplier</code> is <code>1.0</code>.
227
227
* @memberof ModelAnimation.prototype
228
228
*
229
229
* @type {Number}
230
230
* @readonly
231
-
* @deprecated This property has been deprecated. Use {@link ModelAnimation#timeMultiplier} instead.
231
+
* @deprecated This property has been deprecated. Use {@link ModelAnimation#multiplier} instead.
232
232
*
233
233
* @default 1.0
234
234
*/
235
235
speedup : {
236
236
get : function(){
237
-
deprecationWarning('ModelAnimation.speedup','ModelAnimation.speedup is deprecated and will be removed in Cesium 1.54. Use ModelAnimation.timeMultiplier instead.');
238
-
returnthis._timeMultiplier;
237
+
deprecationWarning('ModelAnimation.speedup','ModelAnimation.speedup is deprecated and will be removed in Cesium 1.54. Use ModelAnimation.multiplier instead.');
Copy file name to clipboardexpand all lines: Source/Scene/ModelAnimationCollection.js
+16-16
Original file line number
Diff line number
Diff line change
@@ -106,7 +106,7 @@ define([
106
106
* @param {Number} [options.delay=0.0] The delay, in seconds, from <code>startTime</code> to start playing.
107
107
* @param {JulianDate} [options.stopTime] The scene time to stop playing the animation. When this is <code>undefined</code>, the animation is played for its full duration.
108
108
* @param {Boolean} [options.removeOnStop=false] When <code>true</code>, the animation is removed after it stops playing.
109
-
* @param {Number} [options.timeMultiplier=1.0] Values greater than <code>1.0</code> increase the speed that the animation is played relative to the scene clock speed; values less than <code>1.0</code> decrease the speed.
109
+
* @param {Number} [options.multiplier=1.0] Values greater than <code>1.0</code> increase the speed that the animation is played relative to the scene clock speed; values less than <code>1.0</code> decrease the speed.
110
110
* @param {Boolean} [options.reverse=false] When <code>true</code>, the animation is played in reverse.
111
111
* @param {ModelAnimationLoop} [options.loop=ModelAnimationLoop.NONE] Determines if and how the animation is looped.
112
112
* @returns {ModelAnimation} The animation that was added to the collection.
@@ -115,7 +115,7 @@ define([
115
115
* @exception {DeveloperError} options.name must be a valid animation name.
116
116
* @exception {DeveloperError} options.index must be a valid animation index.
117
117
* @exception {DeveloperError} Either options.name or options.index must be defined.
118
-
* @exception {DeveloperError} options.timeMultiplier must be greater than zero.
118
+
* @exception {DeveloperError} options.multiplier must be greater than zero.
119
119
*
120
120
* @example
121
121
* // Example 1. Add an animation by name
@@ -138,7 +138,7 @@ define([
138
138
* delay : 0.0, // Play at startTime (default)
139
139
* stopTime : Cesium.JulianDate.addSeconds(startTime, 4.0, new Cesium.JulianDate()),
140
140
* removeOnStop : false, // Do not remove when animation stops (default)
141
-
* timeMultiplier : 2.0, // Play at double speed
141
+
* multiplier : 2.0, // Play at double speed
142
142
* reverse : true, // Play in reverse
143
143
* loop : Cesium.ModelAnimationLoop.REPEAT // Loop the animation
144
144
* });
@@ -168,12 +168,12 @@ define([
168
168
}
169
169
170
170
if(defined(options.speedup)){
171
-
deprecationWarning('options.speedup','options.speedup is deprecated and will be removed in Cesium 1.54. Use options.timeMultiplier instead.');
172
-
options.timeMultiplier=options.speedup;
171
+
deprecationWarning('options.speedup','options.speedup is deprecated and will be removed in Cesium 1.54. Use options.multiplier instead.');
thrownewDeveloperError('options.index must be a valid animation index.');
@@ -215,17 +215,17 @@ define([
215
215
* @param {Number} [options.delay=0.0] The delay, in seconds, from <code>startTime</code> to start playing.
216
216
* @param {JulianDate} [options.stopTime] The scene time to stop playing the animations. When this is <code>undefined</code>, the animations are played for its full duration.
217
217
* @param {Boolean} [options.removeOnStop=false] When <code>true</code>, the animations are removed after they stop playing.
218
-
* @param {Number} [options.timeMultiplier=1.0] Values greater than <code>1.0</code> increase the speed that the animations play relative to the scene clock speed; values less than <code>1.0</code> decrease the speed.
218
+
* @param {Number} [options.multiplier=1.0] Values greater than <code>1.0</code> increase the speed that the animations play relative to the scene clock speed; values less than <code>1.0</code> decrease the speed.
219
219
* @param {Boolean} [options.reverse=false] When <code>true</code>, the animations are played in reverse.
220
220
* @param {ModelAnimationLoop} [options.loop=ModelAnimationLoop.NONE] Determines if and how the animations are looped.
221
221
* @returns {ModelAnimation[]} An array of {@link ModelAnimation} objects, one for each animation added to the collection. If there are no glTF animations, the array is empty.
222
222
*
223
223
* @exception {DeveloperError} Animations are not loaded. Wait for the {@link Model#readyPromise} to resolve.
224
-
* @exception {DeveloperError} options.timeMultiplier must be greater than zero.
224
+
* @exception {DeveloperError} options.multiplier must be greater than zero.
225
225
*
226
226
* @example
227
227
* model.activeAnimations.addAll({
228
-
* timeMultiplier : 0.5, // Play at half-speed
228
+
* multiplier : 0.5, // Play at half-speed
229
229
* loop : Cesium.ModelAnimationLoop.REPEAT // Loop the animations
230
230
* });
231
231
*/
@@ -238,12 +238,12 @@ define([
238
238
}
239
239
240
240
if(defined(options.speedup)){
241
-
deprecationWarning('options.speedup','options.speedup is deprecated and will be removed in Cesium 1.54. Use options.timeMultiplier instead.');
242
-
options.timeMultiplier=options.speedup;
241
+
deprecationWarning('options.speedup','options.speedup is deprecated and will be removed in Cesium 1.54. Use options.multiplier instead.');
0 commit comments