Remove redundant boolean

This commit is contained in:
Gabby Getz 2025-08-29 13:33:38 -04:00 committed by GitHub
parent 3a5bfbea9a
commit 2c378378e3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -720,7 +720,7 @@ GaussianSplatPrimitive.prototype.update = function (frameState) {
this._rootTransform = tileset.root.computedTransform;
}
if (tileset.show === false || tileset._selectedTiles.length === 0) {
if (!tileset.show || tileset._selectedTiles.length === 0) {
return;
}