-
Notifications
You must be signed in to change notification settings - Fork 20
RemoveEntityPDU
huggins edited this page Apr 10, 2025
·
6 revisions
Struct container for all information that is contained inside of DIS Remove Entity PDUs.
struct FRemoveEntityPDU
: public FSimulationManagementFamilyPDU- CoreMinimal
- UObject/NoExportTypes.h
- <dis6/RemoveEntityPdu.h>
- PDUs/SimManagementFamily/GRILL_SimulationManagementFamilyPDU.h
| Type | Name | Description |
|---|---|---|
| int64 | RequestID | The specific and unique entity removal request ID. |
| Name | Description |
|---|---|
| FRemoveEntityPDU() | Default constructor |
| Name | Description |
|---|---|
| ~FRemoveEntityPDU() | Default destructor |
| Return | Name | Description |
|---|---|---|
| SetupFromOpenDIS(const DIS::RemoveEntityPdu& RemoveEntityPDUIn) | Converts an OpenDIS RemoveEntityPdu struct to an FRemoveEntityPDU struct. | |
| TArray<uint8> | ToBytes() | Conversion to an array of bytes. Allows for an FRemoveEntityPDU struct to be sent out with a UDP send socket. |
| ToOpenDIS(DIS::RemoveEntityPdu& PDUOut) | Conversion to OpenDIS RemoveEntityPdu struct |
int64 RequestIDThe specific and unique entity removal request ID.
Category: GRILL DIS|Structs|PDUs|RemoveEntity
Range: [0, 4294967295]
FRemoveEntityPDU()Default constructor.
virtual ~FRemoveEntityPDU()Default destructor.
void SetupFromOpenDIS
(
const DIS::RemoveEntityPdu& RemoveEntityPDUIn
)Converts an OpenDIS RemoveEntityPdu struct to an FRemoveEntityPDU struct.
| Parameter | Description |
|---|---|
| RemoveEntityPDUIn | The OpenDIS RemoveEntityPdu struct to convert. |
virtual TArray<uint8> ToBytes() overrideConversion to OpenDIS RemoveEntityPdu struct
| Returns |
|---|
| An array of bytes containing the information from this FRemoveEntityPDU. |
void ToOpenDIS
(
DIS::RemoveEntityPdu& RemoveEntityPDUOut
)Conversion to an array of bytes. Allows for an FRemoveEntityPDU struct to be sent out with a UDP send socket.
| Parameter | Description |
|---|---|
| RemoveEntityPDUOut | The OpenDIS RemoveEntityPdu struct representation of this FRemoveEntityPDU. |