From ee2e9d5d6c629680474bc0e898ff568eb34ce1bc Mon Sep 17 00:00:00 2001 From: Michael Herzog Date: Tue, 12 Dec 2023 11:47:43 +0100 Subject: [PATCH] Quaternion: Add missing call of `_onChangeCallback()` to `fromBufferAttribute()`. (#27363) --- src/math/Quaternion.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/math/Quaternion.js b/src/math/Quaternion.js index 77c20bf5eba1b0..ea6b37391a6d4e 100644 --- a/src/math/Quaternion.js +++ b/src/math/Quaternion.js @@ -650,6 +650,8 @@ class Quaternion { this._z = attribute.getZ( index ); this._w = attribute.getW( index ); + this._onChangeCallback(); + return this; }