初始提交: UE5.3项目基础框架

This commit is contained in:
2025-10-14 11:14:54 +08:00
commit 721d9fd98e
5334 changed files with 316782 additions and 0 deletions

View File

@ -0,0 +1,19 @@
#pragma once
#include <Cesium3DTiles/Library.h>
#include <cstddef>
#include <vector>
namespace Cesium3DTiles {
/**
* @brief Holds {@link Buffer} properties that are specific to the 3D Tiles loader
* rather than part of the 3D Tiles spec.
*/
struct CESIUM3DTILES_API BufferCesium final {
/**
* @brief The buffer's data.
*/
std::vector<std::byte> data;
};
} // namespace Cesium3DTiles