We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e5f8c81 commit 4cf4da0Copy full SHA for 4cf4da0
examples/jsm/loaders/GLTFLoader.js
@@ -2217,15 +2217,15 @@ class GLTFCubicSplineInterpolant extends Interpolant {
2217
2218
}
2219
2220
-const _q = new Quaternion();
+const _quaternion = new Quaternion();
2221
2222
class GLTFCubicSplineQuaternionInterpolant extends GLTFCubicSplineInterpolant {
2223
2224
interpolate_( i1, t0, t, t1 ) {
2225
2226
const result = super.interpolate_( i1, t0, t, t1 );
2227
2228
- _q.fromArray( result ).normalize().toArray( result );
+ _quaternion.fromArray( result ).normalize().toArray( result );
2229
2230
return result;
2231
0 commit comments