Optimizing WB_MainScreen

This commit is contained in:
martinluckyrobots
2025-04-10 10:50:58 +08:00
parent 28c87e6f85
commit 55fabb31e8
6 changed files with 171 additions and 13 deletions

View File

@ -68,10 +68,21 @@ public:
UFUNCTION(BlueprintCallable)
void SelectPreviousQuality();
UFUNCTION(BlueprintCallable)
void DoResolutionChange();
UFUNCTION(BlueprintCallable)
void GameStart();
void UpdateSelectRobot();
void UpdateSelectLevel();
void UpdateSelectQuality();
public:
FParsedData DoJsonParse(const FString& JsonString);
void OnMessageDispatchedHandler(const FString& Message);
void DoSendReadyJson();
public:
UFUNCTION(BlueprintImplementableEvent)
void BPUpdateSelectRobot();
@ -79,8 +90,4 @@ public:
void BPUpdateSelectLevel();
UFUNCTION(BlueprintImplementableEvent)
void BPUpdateSelectQuality();
UFUNCTION(BlueprintImplementableEvent)
void BPSendReadyJson();
UFUNCTION(BlueprintImplementableEvent)
void BPGetdataHTTP();
};