Change renderer selection criteria

This commit is contained in:
ForestOfLight
2025-06-06 02:29:56 -07:00
Unverified
parent f8bbc659fb
commit ef48e4097c
2 changed files with 2 additions and 2 deletions
@@ -98,6 +98,6 @@ export class VerificationRenderer {
shouldUseLargeStructureRendering() {
const bounds = this.instance.getActiveBounds();
return bounds.min.volume(bounds.max) > 300;
return this.instance.hasLayerSelected() || bounds.min.volume(bounds.max) > 300;
}
}