Optimize some game instance codes and WB_GameWidget codes

This commit is contained in:
martinluckyrobots 2025-04-03 12:29:12 +08:00
parent b7ed84f353
commit 3d00bfc668
20 changed files with 32 additions and 0 deletions

View File

@ -43,6 +43,9 @@ public:
UPROPERTY(EditAnywhere, BlueprintReadWrite)
UGameUserWidget* GameUserWidget;
UPROPERTY(EditAnywhere, BlueprintReadWrite)
TArray<FLuckyCode> LuckyCodeList;
public:
UFUNCTION(BlueprintCallable)
void DoSendMessage(FString SendValue);

View File

@ -98,6 +98,17 @@ enum class EGoalType : uint8
Place UMETA(DisplayName = "Place")
};
UENUM(BlueprintType)
enum class ESaveDataType : uint8
{
file UMETA(DisplayName = "file"),
webserver UMETA(DisplayName = "webserver"),
http UMETA(DisplayName = "http"),
debug UMETA(DisplayName = "debug"),
none UMETA(DisplayName = "none")
};
USTRUCT(BlueprintType)
struct FRobotData : public FTableRowBase
{
@ -358,3 +369,21 @@ public:
UPROPERTY(EditAnywhere, BlueprintReadWrite)
bool bIsActive;
};
USTRUCT(BlueprintType)
struct FLuckyCode : public FTableRowBase
{
GENERATED_BODY()
public:
UPROPERTY(EditAnywhere, BlueprintReadWrite)
int ID;
UPROPERTY(EditAnywhere, BlueprintReadWrite)
FString Code;
UPROPERTY(EditAnywhere, BlueprintReadWrite)
float Time;
UPROPERTY(EditAnywhere, BlueprintReadWrite)
bool bCallback;
};