Skip to content
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

##### Fixes :wrench:

- Fixed a crash that could occur when zooming to a tileset with **Update in Editor** disabled.
- Fixed Gaussian splats not rendering in Standalone Game sessions launched from the editor.

### v2.27.0 - 2026-06-01
Expand Down
2 changes: 1 addition & 1 deletion Source/CesiumRuntime/Private/Cesium3DTileset.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -708,7 +708,7 @@ void ACesium3DTileset::OnFocusEditorViewportOnThis() {
};

const Cesium3DTilesSelection::Tile* pRootTile =
this->_pTileset->getRootTile();
this->_pTileset ? this->_pTileset->getRootTile() : nullptr;
if (!pRootTile) {
return;
}
Expand Down
Loading