UKismetMathLibrary::BreakVector_NetQuantize10
#include "Kismet/KismetMathLibrary.h"
Access: public
Specifiers: staticUFUNCTIONBlueprintPure
Description
Splits an FVector_NetQuantize10 into its X, Y, and Z double components. Powers the Blueprint 'Break' node for this type.
Caveats & Gotchas
- • Like the other Break_NetQuantize* variants this forwards to the generic BreakVector — the 1/10-unit rounding already happened when InVec was constructed, so this step itself is lossless.
- • Output parameters are plain doubles; there is no way to get back the original unquantized precision once a value has passed through FVector_NetQuantize10.
Signature
static void BreakVector_NetQuantize10(FVector_NetQuantize10 InVec, double& X, double& Y, double& Z) Parameters
| Name | Type | Description | Default |
|---|---|---|---|
| InVec | FVector_NetQuantize10 | The quantized vector to break apart. | — |
| X | double& | Receives the X component. | — |
| Y | double& | Receives the Y component. | — |
| Z | double& | Receives the Z component. | — |
Return Type
void Example
Read back a decimal-precision quantized vector C++
double X, Y, Z;
UKismetMathLibrary::BreakVector_NetQuantize10(ReplicatedVelocity, X, Y, Z); Version History
Introduced in: unknown
| Version | Status | Notes |
|---|---|---|
| 5.6 | stable | — |
Feedback
Was this helpful?