cesium-native 0.64.0
Loading...
Searching...
No Matches
ITileExcluder.h
1#pragma once
2
4
5class Tile;
6
12public:
13 virtual ~ITileExcluder() = default;
14
19 virtual void startNewFrame() noexcept {}
20
29 virtual bool shouldExclude(const Tile& tile) const noexcept = 0;
30};
31
32} // namespace Cesium3DTilesSelection
An interface that allows tiles to be excluded from loading and rendering when provided in TilesetOpti...
virtual bool shouldExclude(const Tile &tile) const noexcept=0
Determines whether a given tile should be excluded.
virtual void startNewFrame() noexcept
Indicates the start of a new frame, initiated with a call to Tileset::updateView.
A tile in a Tileset.
Definition Tile.h:123
Classes that implement the 3D Tiles standard.