![]() |
Cesium for Unreal 2.22.1
|
Represents the true value type of a metadata value, akin to the property types in EXT_structural_metadata. More...
#include <CesiumMetadataValueType.h>
Public Member Functions | |
| FCesiumMetadataValueType () | |
| FCesiumMetadataValueType (ECesiumMetadataType InType, ECesiumMetadataComponentType InComponentType, bool IsArray=false) | |
| bool | operator== (const FCesiumMetadataValueType &ValueType) const |
| bool | operator!= (const FCesiumMetadataValueType &ValueType) const |
| FString | ToString () const |
| Prints this value type in the format "(Component Type) (Type) (Array)". | |
Public Attributes | |
| ECesiumMetadataType | Type |
| The type of the metadata property or value. | |
| ECesiumMetadataComponentType | ComponentType |
| The component type of the metadata property or value. | |
| bool | bIsArray |
| Whether or not this represents an array containing elements of the specified types. | |
Represents the true value type of a metadata value, akin to the property types in EXT_structural_metadata.
Definition at line 140 of file CesiumMetadataValueType.h.
| FCesiumMetadataValueType::FCesiumMetadataValueType | ( | ) |
| FCesiumMetadataValueType::FCesiumMetadataValueType | ( | ECesiumMetadataType | InType, |
| ECesiumMetadataComponentType | InComponentType, | ||
| bool | IsArray = false ) |
|
inline |
Definition at line 182 of file CesiumMetadataValueType.h.
|
inline |
Definition at line 177 of file CesiumMetadataValueType.h.
| FString FCesiumMetadataValueType::ToString | ( | ) | const |
Prints this value type in the format "(Component Type) (Type) (Array)".
For example, "Int16 Scalar", "Float32 Mat4 Array", "String Array".
| bool FCesiumMetadataValueType::bIsArray |
Whether or not this represents an array containing elements of the specified types.
Definition at line 175 of file CesiumMetadataValueType.h.
| ECesiumMetadataComponentType FCesiumMetadataValueType::ComponentType |
The component type of the metadata property or value.
Only applies when the type is an Enum, Scalar, VecN, or MatN type. For Enum types, the component type applies to the underlying scalars used to represent the enum values.
Definition at line 168 of file CesiumMetadataValueType.h.
| ECesiumMetadataType FCesiumMetadataValueType::Type |
The type of the metadata property or value.
Definition at line 154 of file CesiumMetadataValueType.h.