UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
Float32.h
Go to the documentation of this file.
1// Copyright Epic Games, Inc. All Rights Reserved.
2
3#pragma once
4
5#include "CoreTypes.h"
6
11{
12public:
13
14 union
15 {
16 struct
17 {
18#if PLATFORM_LITTLE_ENDIAN
19 uint32 Mantissa : 23;
20 uint32 Exponent : 8;
21 uint32 Sign : 1;
22#else
26#endif
28
30 };
31
37 FFloat32(float InValue = 0.0f);
38};
39
40
#define UE_FORCEINLINE_HINT
Definition Platform.h:723
UE_FORCEINLINE_HINT TSharedRef< CastToType, Mode > StaticCastSharedRef(TSharedRef< CastFromType, Mode > const &InSharedRef)
Definition SharedPointer.h:127
uint32_t uint32
Definition binka_ue_file_header.h:6
Definition Float32.h:11
float FloatValue
Definition Float32.h:29
uint32 Exponent
Definition Float32.h:24
struct FFloat32::@237::@240 Components
uint32 Mantissa
Definition Float32.h:25
FFloat32(float InValue=0.0f)
Definition Float32.h:41
uint32 Sign
Definition Float32.h:23