Skip to content

Commit

Permalink
Fix ModelProps.isInstanced
Browse files Browse the repository at this point in the history
  • Loading branch information
Pessimistress committed Apr 13, 2024
1 parent 9ccd8f5 commit e53eb2e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/engine/src/model/model.ts
Expand Up @@ -284,7 +284,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 e53eb2e

Please sign in to comment.