初始提交: UE5.3项目基础框架
This commit is contained in:
23
Plugins/CesiumForUnreal/Source/ThirdParty/include/Cesium3DTilesSelection/TileRefine.h
vendored
Normal file
23
Plugins/CesiumForUnreal/Source/ThirdParty/include/Cesium3DTilesSelection/TileRefine.h
vendored
Normal file
@ -0,0 +1,23 @@
|
||||
#pragma once
|
||||
|
||||
namespace Cesium3DTilesSelection {
|
||||
|
||||
/**
|
||||
* @brief Refinement strategies for a {@link Cesium3DTilesSelection::Tile}.
|
||||
*/
|
||||
enum class TileRefine {
|
||||
|
||||
/**
|
||||
* @brief The content of the child tiles will be added to the content of the
|
||||
* parent tile.
|
||||
*/
|
||||
Add = 0,
|
||||
|
||||
/**
|
||||
* @brief The content of the child tiles will replace the content of the
|
||||
* parent tile.
|
||||
*/
|
||||
Replace = 1
|
||||
};
|
||||
|
||||
} // namespace Cesium3DTilesSelection
|
||||
Reference in New Issue
Block a user