Skip to content

Commit

Permalink
fix(engine) Model handling props.isInstanced: false (#2072)
Browse files Browse the repository at this point in the history
  • Loading branch information
Pessimistress committed Apr 16, 2024
1 parent aa5e354 commit bfc2087
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/engine/src/model/model.ts
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ export class Model {
}

// Apply any dynamic settings that will not trigger pipeline change
if (props.isInstanced) {
if ('isInstanced' in props) {
this.isInstanced = props.isInstanced;
}

Expand Down

0 comments on commit bfc2087

Please sign in to comment.