Fix uninitialized variables in remote control

#preflight 626a9fc5ad56c0cbbea0aa6c
#jira UE-150511
#rb geoffrey.douglas

[CL 19961737 by jeremie roy in ue5-main branch]
This commit is contained in:
jeremie roy
2022-04-28 10:42:44 -04:00
parent e692df4b3e
commit 86260abb52

View File

@@ -39,19 +39,19 @@ struct FColorWheelColor
* The position on the unit circle. Magnitude should be in range [0, 1].
*/
UPROPERTY()
FVector2D Position;
FVector2D Position = FVector2D::ZeroVector;
/**
* The color's value component (as in HSV).
*/
UPROPERTY()
double Value;
double Value = 0.0;
/**
* The color's alpha component.
*/
UPROPERTY()
double Alpha;
double Alpha = 0.0;
};
UCLASS()