소스 검색

Quaternion: Remove redundant `_onChangeCallback` in `slerp()`. (#27365)

Michael Herzog 1 년 전
부모
커밋
c476c0dd1b
1개의 변경된 파일1개의 추가작업 그리고 2개의 파일을 삭제
  1. 1 2
      src/math/Quaternion.js

+ 1 - 2
src/math/Quaternion.js

@@ -561,8 +561,7 @@ class Quaternion {
 			this._y = s * y + t * this._y;
 			this._z = s * z + t * this._z;
 
-			this.normalize();
-			this._onChangeCallback();
+			this.normalize(); // normalize calls _onChangeCallback()
 
 			return this;