24 UFUNCTION(BlueprintCallable, Category=
"Menu System")
25 const
FUserProfile& GetPlayerProfile()
const {
return PlayerProfile;};
27 UFUNCTION(BlueprintCallable, Category=
"Menu System")
28 bool GetIsLoading()
const {
return bLoading;};
29 UFUNCTION(BlueprintCallable, Category=
"Menu System")
30 bool GetIsReady()
const {
return bReady;};
31 UFUNCTION(BlueprintCallable, Category=
"Menu System")
32 void SetIsReady(const
bool bValue) {bReady = bValue;};
36 virtual bool Initialize()
override;
38 virtual void NativePreConstruct()
override;
39 virtual void NativeConstruct()
override;
41 UPROPERTY(EditAnywhere, BlueprintReadWrite, Category=
"Menu System")
42 FLinearColor ReadyColor = FLinearColor::Green;
43 UPROPERTY(EditAnywhere, BlueprintReadWrite, Category="
Menu System")
44 FLinearColor UnReadyColor = FLinearColor::Red;
48 UPROPERTY(VisibleAnywhere, BlueprintReadOnly, Category="
Menu System", meta = (BindWidget))
49 UTextBlock* PlayerNameTextBlock =
nullptr;
50 UPROPERTY(VisibleAnywhere, BlueprintReadOnly, Category="
Menu System", meta = (BindWidget))
51 UTextBlock* XPTextBlock =
nullptr;
52 UPROPERTY(VisibleAnywhere, BlueprintReadOnly, Category="
Menu System", meta = (BindWidget))
53 UProgressBar* XPProgressBar =
nullptr;
54 UPROPERTY(VisibleAnywhere, BlueprintReadOnly, Category="
Menu System", meta = (BindWidget))
55 class UBorder* ReadyBorder =
nullptr;
56 UPROPERTY(VisibleAnywhere, BlueprintReadOnly, Category="
Menu System", meta = (BindWidget))
57 UTextBlock* LevelTextBlock =
nullptr;
58 UPROPERTY(VisibleAnywhere, BlueprintReadOnly, Category="
Menu System", meta = (BindWidget))
59 class UImage* ProfilePictureImage =
nullptr;
60 UPROPERTY(VisibleAnywhere, BlueprintReadOnly, Category="
Menu System", meta = (BindWidget))
61 UTextBlock* AchievementsTextBlock =
nullptr;
62 UPROPERTY(VisibleAnywhere, BlueprintReadOnly, Category="
Menu System", meta = (BindWidget))
63 UTextBlock* KillDeathTextBlock =
nullptr;
UCLASS(Blueprintable, BlueprintType, ClassGroup=(BucciGames), meta=(BlueprintSpawnableComponent)) class CHATSYSTEM_API UChatSystemComponent
Definition ChatSystemComponent.h:13