diff --git a/src/core/InterleavedBufferAttribute.js b/src/core/InterleavedBufferAttribute.js index ebab87513781a6dfb9e5c0b59601792d26ac774f..07760bacb8aee328492a8a84451813ce3f255917 100644 --- a/src/core/InterleavedBufferAttribute.js +++ b/src/core/InterleavedBufferAttribute.js @@ -13,7 +13,7 @@ class InterleavedBufferAttribute { this.itemSize = itemSize; this.offset = offset; - this.normalized = normalized; + this.normalized = normalized === true; } diff --git a/src/math/Euler.js b/src/math/Euler.js index 0ff9938221f91d4504c30f9bda42e229f50ff56f..74c93a8a0fc26acde88ad06c2f9a73208fe10de1 100644 --- a/src/math/Euler.js +++ b/src/math/Euler.js @@ -228,7 +228,7 @@ class Euler { this._order = order; - if ( update ) this._onChangeCallback(); + if ( update === true ) this._onChangeCallback(); return this;