You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
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:
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user