未验证 提交 bf2e5479 编写于 作者: W WestLangley 提交者: GitHub

Merge pull request #16899 from Mugen87/dev34

Quaternion: Add missing call of _onChangeCallback in slerp().
......@@ -562,7 +562,10 @@ Object.assign( Quaternion.prototype, {
this._y = s * y + t * this._y;
this._z = s * z + t * this._z;
return this.normalize();
this.normalize();
this._onChangeCallback();
return this;
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册