A Demo Project for the UnrealEngineSDK
Loading...
Searching...
No Matches
ControlsReminderWidget.h
Go to the documentation of this file.
1// Copyright(c) Pixo Group. All Rights Reserved.
2
3#pragma once
4
5#include "CoreMinimal.h"
6#include "UI/BasicWidget.h"
7#include "ControlsReminderWidget.generated.h"
8
9class UImage;
10class UTextBlock;
11
15UCLASS()
16class PIXOCORE_API UControlsReminderWidget : public UBasicWidget
17{
18 GENERATED_BODY()
19
20public:
25 virtual void Init(UBasicWidgetInfo* WidgetInfo) override;
26
27protected:
28 UPROPERTY(BlueprintReadWrite, Meta = (BindWidget))
29 UImage* DeviceImage;
30
31private:
37 void SetImage(UImage* Image, UTexture2D* Texture) const;
38};
Base class for user widgets in the PixoCore module.
Definition BasicWidget.h:24
virtual void Init(UBasicWidgetInfo *WidgetInfo)
Initializes the widget with the provided widget information.
UDataAsset class representing basic widget information.
Definition UIData.h:56
Controls reminder widget in the PixoCore module.
UImage * DeviceImage
UPROPERTY(BlueprintReadWrite, Meta = (BindWidget))