Skip to content

Commit 1f24d80

Browse files
committed
Rename timeMultiplier to multiplier
1 parent db0cb18 commit 1f24d80

11 files changed

+42
-42
lines changed

Apps/Sandcastle/gallery/HeadingPitchRoll.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ <h1>Loading...</h1>
120120
planePrimitive.readyPromise.then(function(model) {
121121
// Play and loop all animations at half-speed
122122
model.activeAnimations.addAll({
123-
timeMultiplier : 0.5,
123+
multiplier : 0.5,
124124
loop : Cesium.ModelAnimationLoop.REPEAT
125125
});
126126

Apps/Sandcastle/gallery/LocalToFixedFrame.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ <h1>Loading...</h1>
142142
primitives[0].primitive.readyPromise.then(function(model) {
143143
// Play and loop all animations at half-speed
144144
model.activeAnimations.addAll({
145-
timeMultiplier : 0.5,
145+
multiplier : 0.5,
146146
loop : Cesium.ModelAnimationLoop.REPEAT
147147
});
148148

Apps/Sandcastle/gallery/development/3D Models Instancing.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
collection.readyPromise.then(function(collection) {
6565
// Play and loop all animations at half-speed
6666
collection.activeAnimations.addAll({
67-
timeMultiplier : 0.5,
67+
multiplier : 0.5,
6868
loop : Cesium.ModelAnimationLoop.REPEAT
6969
});
7070
orientCamera(collection._boundingSphere.center, collection._boundingSphere.radius);
@@ -93,7 +93,7 @@
9393
model.readyPromise.then(function(model) {
9494
// Play and loop all animations at half-speed
9595
model.activeAnimations.addAll({
96-
timeMultiplier : 0.5,
96+
multiplier : 0.5,
9797
loop : Cesium.ModelAnimationLoop.REPEAT
9898
});
9999
}).otherwise(function(error){

Apps/Sandcastle/gallery/development/3D Models.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@
145145
model.colorBlendAmount = viewModel.colorBlendAmount;
146146
// Play and loop all animations at half-speed
147147
model.activeAnimations.addAll({
148-
timeMultiplier : 0.5,
148+
multiplier : 0.5,
149149
loop : Cesium.ModelAnimationLoop.REPEAT
150150
});
151151

Apps/Sandcastle/gallery/development/Multiple Shadows.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@
7676
model.readyPromise.then(function(model) {
7777
// Play and loop all animations at half-speed
7878
model.activeAnimations.addAll({
79-
timeMultiplier : 0.5,
79+
multiplier : 0.5,
8080
loop : Cesium.ModelAnimationLoop.REPEAT
8181
});
8282
}).otherwise(function(error) {

Apps/Sandcastle/gallery/development/Shadows.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -611,7 +611,7 @@
611611
model.readyPromise.then(function(model) {
612612
// Play and loop all animations at half-speed
613613
model.activeAnimations.addAll({
614-
timeMultiplier : 0.5,
614+
multiplier : 0.5,
615615
loop : Cesium.ModelAnimationLoop.REPEAT
616616
});
617617
}).otherwise(function(error){

CHANGES.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Change Log
77
* `TerrainProviders` that implement `availability` must now also implement the `loadTileDataAvailability` method.
88

99
##### 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)
1111

1212
##### Additions :tada:
1313
* Added functions to get the most detailed height of 3D Tiles on-screen or off-screen. [#7115](https://github.com/AnalyticalGraphicsInc/cesium/pull/7115)

Source/Scene/Model.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -833,7 +833,7 @@ define([
833833
* // Play all animations at half-speed when the model is ready to render
834834
* Cesium.when(model.readyPromise).then(function(model) {
835835
* model.activeAnimations.addAll({
836-
* timeMultiplier : 0.5
836+
* multiplier : 0.5
837837
* });
838838
* }).otherwise(function(error){
839839
* window.alert(error);

Source/Scene/ModelAnimation.js

+10-10
Original file line numberDiff line numberDiff line change
@@ -51,11 +51,11 @@ define([
5151
this.removeOnStop = defaultValue(options.removeOnStop, false);
5252

5353
if (defined(options.speedup)) {
54-
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.');
55+
options.multiplier = options.speedup;
5656
}
5757

58-
this._timeMultiplier = defaultValue(options.timeMultiplier, 1.0);
58+
this._multiplier = defaultValue(options.multiplier, 1.0);
5959
this._reverse = defaultValue(options.reverse, false);
6060
this._loop = defaultValue(options.loop, ModelAnimationLoop.NONE);
6161

@@ -203,7 +203,7 @@ define([
203203
* to the scene clock speed; values less than <code>1.0</code> decrease the speed. A value of
204204
* <code>1.0</code> plays the animation at the speed in the glTF animation mapped to the scene
205205
* 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>.
207207
*
208208
* @memberof ModelAnimation.prototype
209209
*
@@ -212,9 +212,9 @@ define([
212212
*
213213
* @default 1.0
214214
*/
215-
timeMultiplier : {
215+
multiplier : {
216216
get : function() {
217-
return this._timeMultiplier;
217+
return this._multiplier;
218218
}
219219
},
220220

@@ -223,19 +223,19 @@ define([
223223
* to the scene clock speed; values less than <code>1.0</code> decrease the speed. A value of
224224
* <code>1.0</code> plays the animation at the speed in the glTF animation mapped to the scene
225225
* 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>.
227227
* @memberof ModelAnimation.prototype
228228
*
229229
* @type {Number}
230230
* @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.
232232
*
233233
* @default 1.0
234234
*/
235235
speedup : {
236236
get : function() {
237-
deprecationWarning('ModelAnimation.speedup', 'ModelAnimation.speedup is deprecated and will be removed in Cesium 1.54. Use ModelAnimation.timeMultiplier instead.');
238-
return this._timeMultiplier;
237+
deprecationWarning('ModelAnimation.speedup', 'ModelAnimation.speedup is deprecated and will be removed in Cesium 1.54. Use ModelAnimation.multiplier instead.');
238+
return this._multiplier;
239239
}
240240
},
241241

Source/Scene/ModelAnimationCollection.js

+16-16
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ define([
106106
* @param {Number} [options.delay=0.0] The delay, in seconds, from <code>startTime</code> to start playing.
107107
* @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.
108108
* @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.
110110
* @param {Boolean} [options.reverse=false] When <code>true</code>, the animation is played in reverse.
111111
* @param {ModelAnimationLoop} [options.loop=ModelAnimationLoop.NONE] Determines if and how the animation is looped.
112112
* @returns {ModelAnimation} The animation that was added to the collection.
@@ -115,7 +115,7 @@ define([
115115
* @exception {DeveloperError} options.name must be a valid animation name.
116116
* @exception {DeveloperError} options.index must be a valid animation index.
117117
* @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.
119119
*
120120
* @example
121121
* // Example 1. Add an animation by name
@@ -138,7 +138,7 @@ define([
138138
* delay : 0.0, // Play at startTime (default)
139139
* stopTime : Cesium.JulianDate.addSeconds(startTime, 4.0, new Cesium.JulianDate()),
140140
* 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
142142
* reverse : true, // Play in reverse
143143
* loop : Cesium.ModelAnimationLoop.REPEAT // Loop the animation
144144
* });
@@ -168,12 +168,12 @@ define([
168168
}
169169

170170
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.');
172+
options.multiplier = options.speedup;
173173
}
174174

175-
if (defined(options.timeMultiplier) && (options.timeMultiplier <= 0.0)) {
176-
throw new DeveloperError('options.timeMultiplier must be greater than zero.');
175+
if (defined(options.multiplier) && (options.multiplier <= 0.0)) {
176+
throw new DeveloperError('options.multiplier must be greater than zero.');
177177
}
178178
if (defined(options.index) && (options.index >= animations.length || options.index < 0)) {
179179
throw new DeveloperError('options.index must be a valid animation index.');
@@ -215,17 +215,17 @@ define([
215215
* @param {Number} [options.delay=0.0] The delay, in seconds, from <code>startTime</code> to start playing.
216216
* @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.
217217
* @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.
219219
* @param {Boolean} [options.reverse=false] When <code>true</code>, the animations are played in reverse.
220220
* @param {ModelAnimationLoop} [options.loop=ModelAnimationLoop.NONE] Determines if and how the animations are looped.
221221
* @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.
222222
*
223223
* @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.
225225
*
226226
* @example
227227
* model.activeAnimations.addAll({
228-
* timeMultiplier : 0.5, // Play at half-speed
228+
* multiplier : 0.5, // Play at half-speed
229229
* loop : Cesium.ModelAnimationLoop.REPEAT // Loop the animations
230230
* });
231231
*/
@@ -238,12 +238,12 @@ define([
238238
}
239239

240240
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.');
242+
options.multiplier = options.speedup;
243243
}
244244

245-
if (defined(options.timeMultiplier) && (options.timeMultiplier <= 0.0)) {
246-
throw new DeveloperError('options.timeMultiplier must be greater than zero.');
245+
if (defined(options.multiplier) && (options.multiplier <= 0.0)) {
246+
throw new DeveloperError('options.multiplier must be greater than zero.');
247247
}
248248
//>>includeEnd('debug');
249249

@@ -398,7 +398,7 @@ define([
398398
}
399399

400400
if (!defined(scheduledAnimation._duration)) {
401-
scheduledAnimation._duration = runtimeAnimation.stopTime * (1.0 / scheduledAnimation.timeMultiplier);
401+
scheduledAnimation._duration = runtimeAnimation.stopTime * (1.0 / scheduledAnimation.multiplier);
402402
}
403403

404404
var startTime = scheduledAnimation._computedStartTime;
@@ -444,7 +444,7 @@ define([
444444
delta = 1.0 - delta;
445445
}
446446

447-
var localAnimationTime = delta * duration * scheduledAnimation.timeMultiplier;
447+
var localAnimationTime = delta * duration * scheduledAnimation.multiplier;
448448
// Clamp in case floating-point roundoff goes outside the animation's first or last keyframe
449449
localAnimationTime = CesiumMath.clamp(localAnimationTime, runtimeAnimation.startTime, runtimeAnimation.stopTime);
450450

Specs/Scene/ModelSpec.js

+7-7
Original file line numberDiff line numberDiff line change
@@ -1300,10 +1300,10 @@ defineSuite([
13001300
}).toThrowDeveloperError();
13011301
});
13021302

1303-
it('addAll throws when timeMultiplier is less than or equal to zero.', function() {
1303+
it('addAll throws when multiplier is less than or equal to zero.', function() {
13041304
expect(function() {
13051305
return animBoxesModel.activeAnimations.addAll({
1306-
timeMultiplier : 0.0
1306+
multiplier : 0.0
13071307
});
13081308
}).toThrowDeveloperError();
13091309
});
@@ -1323,7 +1323,7 @@ defineSuite([
13231323
expect(a.delay).toEqual(0.0);
13241324
expect(a.stopTime).not.toBeDefined();
13251325
expect(a.removeOnStop).toEqual(false);
1326-
expect(a.timeMultiplier).toEqual(1.0);
1326+
expect(a.multiplier).toEqual(1.0);
13271327
expect(a.reverse).toEqual(false);
13281328
expect(a.loop).toEqual(ModelAnimationLoop.NONE);
13291329
expect(a.start).toBeDefined();
@@ -1398,11 +1398,11 @@ defineSuite([
13981398
}).toThrowDeveloperError();
13991399
});
14001400

1401-
it('add throws when timeMultiplier is less than or equal to zero.', function() {
1401+
it('add throws when multiplier is less than or equal to zero.', function() {
14021402
expect(function() {
14031403
return animBoxesModel.activeAnimations.add({
14041404
name : 'animation_1',
1405-
timeMultiplier : 0.0
1405+
multiplier : 0.0
14061406
});
14071407
}).toThrowDeveloperError();
14081408
});
@@ -1512,13 +1512,13 @@ defineSuite([
15121512
animBoxesModel.show = false;
15131513
});
15141514

1515-
it('Animates with a timeMultiplier', function() {
1515+
it('Animates with a multiplier', function() {
15161516
var time = JulianDate.fromDate(new Date('January 1, 2014 12:00:00 UTC'));
15171517
var animations = animBoxesModel.activeAnimations;
15181518
var a = animations.add({
15191519
name : 'animation_1',
15201520
startTime : time,
1521-
timeMultiplier : 1.5
1521+
multiplier : 1.5
15221522
});
15231523

15241524
var spyUpdate = jasmine.createSpy('listener');

0 commit comments

Comments
 (0)