|
@@ -32752,6 +32752,8 @@ class AnimationAction {
|
|
|
|
|
|
}
|
|
|
|
|
|
+const _controlInterpolantsResultBuffer = /*@__PURE__*/new Float32Array(1);
|
|
|
+
|
|
|
class AnimationMixer extends EventDispatcher {
|
|
|
constructor(root) {
|
|
|
super();
|
|
@@ -33082,7 +33084,7 @@ class AnimationMixer extends EventDispatcher {
|
|
|
let interpolant = interpolants[lastActiveIndex];
|
|
|
|
|
|
if (interpolant === undefined) {
|
|
|
- interpolant = new LinearInterpolant(new Float32Array(2), new Float32Array(2), 1, this._controlInterpolantsResultBuffer);
|
|
|
+ interpolant = new LinearInterpolant(new Float32Array(2), new Float32Array(2), 1, _controlInterpolantsResultBuffer);
|
|
|
interpolant.__cacheIndex = lastActiveIndex;
|
|
|
interpolants[lastActiveIndex] = interpolant;
|
|
|
}
|
|
@@ -33291,8 +33293,6 @@ class AnimationMixer extends EventDispatcher {
|
|
|
|
|
|
}
|
|
|
|
|
|
-AnimationMixer.prototype._controlInterpolantsResultBuffer = new Float32Array(1);
|
|
|
-
|
|
|
class Uniform {
|
|
|
constructor(value) {
|
|
|
if (typeof value === 'string') {
|