Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/core/src/mesh/Skin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export class Skin extends EngineObject {
inverseBindMatrices = new Array<Matrix>();

/** @internal */
@ignoreClone
@deepClone
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Consider adding a small regression test that Skin.clone() produces an independent _skinMatrices (i.e., not the same Float32Array reference), since this change is specifically fixing shared-state cloning bugs.

Severity: low

Fix This in Augment

🤖 Was this useful? React with 👍 or 👎, or 🚀 if it prevented an incident/outage.

_skinMatrices: Float32Array;
/** @internal */
@ignoreClone
Expand Down
Loading