Fixed an issue with structs and enums not having a category
This commit is contained in:
parent
3853615201
commit
13815b4f30
1 changed files with 25 additions and 25 deletions
|
@ -24,10 +24,10 @@ struct FSDock
|
||||||
GENERATED_BODY()
|
GENERATED_BODY()
|
||||||
|
|
||||||
public:
|
public:
|
||||||
UPROPERTY(EditAnywhere, BlueprintReadWrite)
|
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category="HarmonyLink")
|
||||||
EDockModel Model = EDockModel::Unknown;
|
EDockModel Model = EDockModel::Unknown;
|
||||||
|
|
||||||
UPROPERTY(EditAnywhere, BlueprintReadWrite)
|
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category="HarmonyLink")
|
||||||
FString Name = "";
|
FString Name = "";
|
||||||
|
|
||||||
void Print() const
|
void Print() const
|
||||||
|
@ -43,13 +43,13 @@ struct FDockInfo
|
||||||
GENERATED_BODY()
|
GENERATED_BODY()
|
||||||
|
|
||||||
public:
|
public:
|
||||||
UPROPERTY(EditAnywhere, BlueprintReadWrite)
|
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category="HarmonyLink")
|
||||||
FSDock DockModel;
|
FSDock DockModel;
|
||||||
|
|
||||||
UPROPERTY(EditAnywhere, BlueprintReadWrite)
|
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category="HarmonyLink")
|
||||||
bool bIsDocked = false;
|
bool bIsDocked = false;
|
||||||
|
|
||||||
UPROPERTY(EditAnywhere, BlueprintReadWrite)
|
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category="HarmonyLink")
|
||||||
bool bFallbackDetection = false;
|
bool bFallbackDetection = false;
|
||||||
|
|
||||||
void Print() const
|
void Print() const
|
||||||
|
@ -67,16 +67,16 @@ struct FOSInfo
|
||||||
GENERATED_BODY()
|
GENERATED_BODY()
|
||||||
|
|
||||||
public:
|
public:
|
||||||
UPROPERTY(EditAnywhere, BlueprintReadWrite)
|
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category="HarmonyLink")
|
||||||
FString OSType = "Unknown";
|
FString OSType = "Unknown";
|
||||||
|
|
||||||
UPROPERTY(EditAnywhere, BlueprintReadWrite)
|
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category="HarmonyLink")
|
||||||
FString OSVersion = "";
|
FString OSVersion = "";
|
||||||
|
|
||||||
UPROPERTY(EditAnywhere, BlueprintReadWrite)
|
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category="HarmonyLink")
|
||||||
FString OSEdition = "";
|
FString OSEdition = "";
|
||||||
|
|
||||||
UPROPERTY(EditAnywhere, BlueprintReadWrite)
|
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category="HarmonyLink")
|
||||||
FString OSBits = "X64";
|
FString OSBits = "X64";
|
||||||
|
|
||||||
void Print() const
|
void Print() const
|
||||||
|
@ -102,13 +102,13 @@ struct FBatteryInfo
|
||||||
GENERATED_BODY()
|
GENERATED_BODY()
|
||||||
|
|
||||||
public:
|
public:
|
||||||
UPROPERTY(EditAnywhere, BlueprintReadWrite)
|
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category="HarmonyLink")
|
||||||
bool bHasBattery = false;
|
bool bHasBattery = false;
|
||||||
|
|
||||||
UPROPERTY(EditAnywhere, BlueprintReadWrite)
|
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category="HarmonyLink")
|
||||||
int32 BatteryPercent = 0;
|
int32 BatteryPercent = 0;
|
||||||
|
|
||||||
UPROPERTY(EditAnywhere, BlueprintReadWrite)
|
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category="HarmonyLink")
|
||||||
EChargingStatus ChargingStatus = EChargingStatus::Unknown;
|
EChargingStatus ChargingStatus = EChargingStatus::Unknown;
|
||||||
|
|
||||||
void Print() const
|
void Print() const
|
||||||
|
@ -125,34 +125,34 @@ struct FHarmonyLinkVersionData
|
||||||
GENERATED_BODY()
|
GENERATED_BODY()
|
||||||
|
|
||||||
public:
|
public:
|
||||||
UPROPERTY(EditAnywhere, BlueprintReadWrite)
|
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category="HarmonyLink")
|
||||||
FString BuildTimestamp;
|
FString BuildTimestamp;
|
||||||
|
|
||||||
UPROPERTY(EditAnywhere, BlueprintReadWrite)
|
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category="HarmonyLink")
|
||||||
FString GitBranch;
|
FString GitBranch;
|
||||||
|
|
||||||
UPROPERTY(EditAnywhere, BlueprintReadWrite)
|
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category="HarmonyLink")
|
||||||
FString GitDescribe;
|
FString GitDescribe;
|
||||||
|
|
||||||
UPROPERTY(EditAnywhere, BlueprintReadWrite)
|
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category="HarmonyLink")
|
||||||
FString GitCommitTimestamp;
|
FString GitCommitTimestamp;
|
||||||
|
|
||||||
UPROPERTY(EditAnywhere, BlueprintReadWrite)
|
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category="HarmonyLink")
|
||||||
bool bDebug;
|
bool bDebug;
|
||||||
|
|
||||||
UPROPERTY(EditAnywhere, BlueprintReadWrite)
|
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category="HarmonyLink")
|
||||||
FString Version;
|
FString Version;
|
||||||
|
|
||||||
UPROPERTY(EditAnywhere, BlueprintReadWrite)
|
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category="HarmonyLink")
|
||||||
int32 VersionMajor;
|
int32 VersionMajor;
|
||||||
|
|
||||||
UPROPERTY(EditAnywhere, BlueprintReadWrite)
|
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category="HarmonyLink")
|
||||||
int32 VersionMinor;
|
int32 VersionMinor;
|
||||||
|
|
||||||
UPROPERTY(EditAnywhere, BlueprintReadWrite)
|
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category="HarmonyLink")
|
||||||
int32 VersionPatch;
|
int32 VersionPatch;
|
||||||
|
|
||||||
UPROPERTY(EditAnywhere, BlueprintReadWrite)
|
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category="HarmonyLink")
|
||||||
FString VersionPre;
|
FString VersionPre;
|
||||||
|
|
||||||
void Print() const
|
void Print() const
|
||||||
|
@ -176,13 +176,13 @@ struct FAllInfo
|
||||||
GENERATED_BODY()
|
GENERATED_BODY()
|
||||||
|
|
||||||
public:
|
public:
|
||||||
UPROPERTY(EditAnywhere, BlueprintReadWrite)
|
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category="HarmonyLink")
|
||||||
FOSInfo OSInfo;
|
FOSInfo OSInfo;
|
||||||
|
|
||||||
UPROPERTY(EditAnywhere, BlueprintReadWrite)
|
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category="HarmonyLink")
|
||||||
FDockInfo DockInfo;
|
FDockInfo DockInfo;
|
||||||
|
|
||||||
UPROPERTY(EditAnywhere, BlueprintReadWrite)
|
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category="HarmonyLink")
|
||||||
FBatteryInfo BatteryInfo;
|
FBatteryInfo BatteryInfo;
|
||||||
|
|
||||||
void Print() const
|
void Print() const
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue