Skip to content

Commit

Permalink
Core: Robustness.
Browse files Browse the repository at this point in the history
  • Loading branch information
mrdoob committed Jun 9, 2021
1 parent 80e1a0a commit 8ff5d83
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/core/InterleavedBufferAttribute.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class InterleavedBufferAttribute {
this.itemSize = itemSize;
this.offset = offset;

this.normalized = normalized;
this.normalized = normalized === true;

}

Expand Down
2 changes: 1 addition & 1 deletion src/math/Euler.js
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ class Euler {

this._order = order;

if ( update ) this._onChangeCallback();
if ( update === true ) this._onChangeCallback();

return this;

Expand Down

0 comments on commit 8ff5d83

Please sign in to comment.